in reply to Re: knowing if process dies.
in thread knowing if process dies.
This is from memory, so if I messed up, I'm sure someone will correct me. {grin}my $errcode = $? >> 8; my $core_was_dumped = !!($? & 128); my $signal_that_killed_it = $? & 127;
-- Randal L. Schwartz, Perl hacker
|
|---|