signal.c 196 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 /* GNU copyright notice */ #include "pop3d.h" void pop3_sigchld (int signo) { pid_t pid; int status; (void)signo; while ( (pid = waitpid(-1, &status, WNOHANG)) > 0) --children; }