On Thu, May 05, 2011 at 04:33:44PM -0400, Phillip Susi wrote: > On 5/5/2011 9:04 AM, Jon Grant wrote: > >>pretty sure you are correct. i dont believe the kernel currently > >>supports forcibly reparenting of non-child processes. > > > >Do you think there is enough of an itch, for someone to scratch? > > I doubt it because it seems like a solution in search of a problem. > Normally init reaps any children it inherits. If you are seeing a > bunch of zombie processes owned by init, then your init seems to be > buggy. Even so, zombies don't use any cpu, and virtually no ram, so > it isn't much of an issue. The standard sysvinit uses a signal handler on SIGCHLD to collect all of its children which has died. I guesss that systemd does nearly the same. If a normal process uses a signal handler it should make sure that the signal handler is restarted (SA_RESTART) and not blocked by any signal mask, also within the signal handler should pick up all available childs. Werner -- "Having a smoking section in a restaurant is like having a peeing section in a swimming pool." -- Edward Burr -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html