http://qs1969.pair.com?node_id=79776


in reply to Re: Re: Have children maintain themselves or main script maintain children.
in thread Have children maintain themselves or main script maintain children.

There are several disadvantages to installing a SIGCHLD handler

Some of the examples in The Perl Cookbook have the correct waitpid in a loop in the SIGCHLD handler, but some don't (for instance the section on a preforking daemon).

Personally I would ignore SIGCHLD and make the parent wait() for the children to die. It will be nicely blocked (ie not using any excess CPU) until it needs to do something (ie make more children).