Do not use SA_NOCLDWAIT in tst-pselect.

This commit is contained in:
Roland McGrath 2015-02-06 12:29:39 -08:00
parent da3a1594af
commit 8272780608
2 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2015-02-06 Roland McGrath <roland@hack.frob.com>
* misc/tst-pselect.c (do_test): Don't set SA_NOCLDWAIT in sa_flags for
SIGCHLD; it's redundant with SIG_IGN as sa_handler.
* posix/tst-getlogin.c: Move to ...
* login/tst-getlogin.c: ... here.
* posix/Makefile (tests): Move tst-getlogin to ...

View File

@ -31,8 +31,6 @@ do_test (void)
}
sa.sa_handler = SIG_IGN;
sa.sa_flags = SA_NOCLDWAIT;
if (sigaction (SIGCHLD, &sa, NULL) != 0)
{
puts ("2nd sigaction failed");