X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=signal.c;h=da395157c29ae8aff0459a2731e10ae7a13e90e6;hp=59a0d45aba7ad975fc287862308891435c4e9095;hb=c36f5e92c572c8eaf77c227bce164b9e98a74a3e;hpb=3781a3df94ce9bb28c98369df7a140fb4c086c23 diff --git a/signal.c b/signal.c index 59a0d45a..da395157 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. *