ucspi-ssl  0.12.7
ucspi-ssl
trysgprm.c
Go to the documentation of this file.
1 /* Public domain. */
2 
3 #include <signal.h>
4 
5 main()
6 {
7  sigset_t ss;
8 
9  sigemptyset(&ss);
10  sigaddset(&ss,SIGCHLD);
11  sigprocmask(SIG_SETMASK,&ss,(sigset_t *) 0);
12 }
main()
Definition: trysgprm.c:5