X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=signal.c;h=5d3e2c9d915c5bbc2c92b5197dcee5c4e06b1ba5;hp=59a0d45aba7ad975fc287862308891435c4e9095;hb=659fbb8272a8bbb45e361207628b11382c99df93;hpb=7ad440cc721a097ecff7aa3f38f22806c644a497 diff --git a/signal.c b/signal.c index 59a0d45a..5d3e2c9d 100644 --- a/signal.c +++ b/signal.c @@ -102,20 +102,6 @@ int para_reap_child(pid_t *pid) return 1; } -/** - * Paraslash's zombie killer. - * - * It just calls \p para_reap_child() until there are no more children left to - * reap. - */ -void para_reap_children(void) -{ - pid_t pid; - - while (para_reap_child(&pid) > 0) - ; /* nothing */ -} - /** * Install the given handler for the given signal. * @@ -163,7 +149,7 @@ void para_install_sighandler(int sig) } /** - * Return the number of next pending signal. + * Return the number of the next pending signal. * * This should be called if the fd for the signal pipe is ready for reading. *