There are several disadvantages to installing a SIGCHLD handler
- Signals aren't reliable so you may not get one for every child expiry. Using waitpid in a loop will help
here.
- You can get SIGCHLDs from your children when they haven't died
(eg your child gets sent a SIGSTOP - the parent will get a SIGCHLD)
- You can get SIGCHLDs from perl operations like open "|.." and backticks if you are unlucky which can confuse things.
- Unreliable signals are evil!
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).
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.