in reply to "self-pipe trick" needed with perl?
It seems to say that it's possible for select not to return (with EINTR or otherwise) on SIGCHLD. If that's true, then yes, it affects Perl. Keep in mind the reference was written in 1992, a lifetime ago, so it may no longer apply.
Note that the self-pipe trick won't work in Perl (when using safe signals). The signal handler can't cause select to return because the signal handler only get executed after select returns.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: "self-pipe trick" needed with perl?
by perl5ever (Pilgrim) on Jun 07, 2011 at 20:45 UTC | |
by ikegami (Patriarch) on Jun 07, 2011 at 21:07 UTC |