| 404 | install_sigchld (void) |
| 405 | { |
| 406 | struct sigaction sa; |
| 407 | sigemptyset (&sa.sa_mask); /* Allow concurrent calls to handler */ |
| 408 | sa.sa_handler = chld; |
| 409 | sa.sa_flags = SA_RESTART; /* Restart syscalls if possible, as that's |
no outgoing calls
no test coverage detected