2 @section @code{sigaction}
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigaction.html}
7 Gnulib module: sigaction
9 Portability problems fixed by Gnulib:
12 This function is missing on some platforms:
16 Portability problems not fixed by Gnulib:
19 POSIX recommends that when specifying SA_RESETHAND, SA_NODEFER must
23 Support for SA_ONSTACK is missing on some platforms:
27 Support for SA_SIGINFO is missing on some platforms:
31 Support for SIGCHLD, and thus for SA_NOCLDSTOP and SA_NOCLDWAIT, is
32 missing on some platforms:
36 Support for SA_RESETHAND is missing on some platforms:
40 Support for SA_RESTART is missing on some platforms:
44 In spite of having SA_SIGACTION, struct sigaction lacks the
45 sa_sigaction member on some platforms:
49 The symbolic value @code{SIG_IGN} for the @code{SIGCHLD} signal is equivalent
52 void handle_child (int sigchld)
54 while (waitpid (-1, NULL, WNOHANG) > 0)
58 except that @code{SIG_IGN} for @code{SIGCHLD} has the effect that the children
59 execution times are not accounted in the @code{times} function.
60 On some platforms (BSD? SystemV? Linux?), you need to use the @code{sigaction}
61 flag @code{SA_NOCLDWAIT} in order to obtain this behavior.