signal.c 188 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 signal) { pid_t pid; int stat; while ( (pid = waitpid(-1, &stat, WNOHANG)) > 0) --children; return; }