Erik Faye-Lund wrote: > --- a/daemon.c > +++ b/daemon.c [...] > @@ -671,18 +658,26 @@ static void check_dead_children(void) > int status; > pid_t pid; > > - while ((pid = waitpid(-1, &status, WNOHANG)) > 0) { > + struct child **cradle, *blanket; > + for (cradle = &firstborn; (blanket = *cradle);) > + if ((pid = waitpid(blanket->cld.pid, &status, WNOHANG)) > 1) { What is this change (> 0 â > 1) about? -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html