in reply to (tye)Re: how to do things while waiting?
in thread how to do things while waiting?
So if you don't like my wording, you should check whether it is still needed and then send in a documentation patch.On most UNIX platforms, the CHLD (sometimes also known as CLD) signal has special behavior with respect to a value of 'IGNORE'. Setting $SIG{CHLD} to 'IGNORE' on such a platform has the effect of not creating zombie processes when the parent process fails to wait() on its child processes (i.e. child processes are automatically reaped). Calling wait() with $SIG{CHLD} set to 'IGNORE' usually returns -1 on such platforms.
|
|---|