From c4dd57c300aa05ab2f957d571c321237a58d0368 Mon Sep 17 00:00:00 2001 From: Ondřej Bílka Date: Tue, 14 Jan 2014 16:07:50 +0100 Subject: 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. --- sysdeps/posix/system.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'sysdeps') diff --git a/sysdeps/posix/system.c b/sysdeps/posix/system.c index de71e6b661..e8b921febb 100644 --- a/sysdeps/posix/system.c +++ b/sysdeps/posix/system.c @@ -181,15 +181,6 @@ __libc_system (const char *line) not be available after a chroot(), for example. */ return do_system ("exit 0") == 0; - if (SINGLE_THREAD_P) - return do_system (line); - - int oldtype = LIBC_CANCEL_ASYNC (); - - int result = do_system (line); - - LIBC_CANCEL_RESET (oldtype); - - return result; + return do_system (line); } weak_alias (__libc_system, system) -- cgit 1.4.1