in reply to Re: Re: Re: Re: no sigchild under win32 ?
in thread no sigchild under win32 ?
'Perl uses a simple signal handling model: the %SIG hash contains names or references of user-installed signal handlers.'
Simply put, SIGCHILD, SIGCHLD should be $SIG{CHLD}, $SIG{CLD}. Even so, the code should read something like kill($signal, $processid).
|
|---|