From: H.J. Lu Date: Sat, 18 Jan 2014 14:58:36 +0000 (-0800) Subject: Don't check asynchronous cancellation on system X-Git-Tag: glibc-2.19~102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2145f8b51df7b1bf670c48be7cb19eadb65b4247;p=thirdparty%2Fglibc.git Don't check asynchronous cancellation on system Since asynchronous cancellation was removed from system by commit c4dd57c300aa05ab2f957d571c321237a58d0368 Author: Ondřej Bílka Date: Tue Jan 14 16:07:50 2014 +0100 Do not enable asynchronous cancellation in system. Fixes bug 14782. We needlessly enabled thread cancellation before it was necessary. As only call that needs to be guarded is waitpid which is cancellation point we could remove cancellation altogether. we shouldn't check asynchronous cancellation on system. [BZ #14782] * tst-cancel-wrappers.sh: Remove system. --- diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 149509e8b11..0defc9a871a 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2014-01-18 H.J. Lu + + [BZ #14782] + * tst-cancel-wrappers.sh: Remove system. + 2014-01-11 Paul Pluzhnikov * tst-tls7.c (action): New function. diff --git a/nptl/tst-cancel-wrappers.sh b/nptl/tst-cancel-wrappers.sh index b0318ab7be4..e41ed512b21 100644 --- a/nptl/tst-cancel-wrappers.sh +++ b/nptl/tst-cancel-wrappers.sh @@ -54,7 +54,6 @@ C["sigpause"]=1 C["sigsuspend"]=1 C["sigwait"]=1 C["sigwaitinfo"]=1 -C["system"]=1 C["tcdrain"]=1 C["wait"]=1 C["waitid"]=1