From: Roland McGrath Date: Wed, 11 Aug 2004 19:29:35 +0000 (+0000) Subject: 2004-08-11 Roland McGrath X-Git-Tag: upstream/2.20~10700 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=475444485bcfba08f4281dff9b3f2c6211a6d691;p=platform%2Fupstream%2Flinaro-glibc.git 2004-08-11 Roland McGrath * posix/tst-waitid.c (do_test): Ignore SIGCHLD before cleanup SIGKILL. --- diff --git a/posix/tst-waitid.c b/posix/tst-waitid.c index 3befe1a..3e81d7a 100644 --- a/posix/tst-waitid.c +++ b/posix/tst-waitid.c @@ -450,6 +450,7 @@ do_test (int argc, char *argv[]) out: if (spurious_sigchld) status = EXIT_FAILURE; + signal (SIGCHLD, SIG_IGN); kill (pid, SIGKILL); /* Make sure it's dead if we bailed early. */ return status; }