http://qs321.pair.com?node_id=824062


in reply to Unruly children...

Just a punt. Maybe a parent process, system shutdown or something else is sending signals that aren't being handled and are causing general havoc.

One thing to try, if you're not already, is to trap and report on incoming signals, just to see what's going on.

foreach (qw/HUP QUIT KILL TERM/) { my $msg = "slugged by a $_"; $SIG{$_} = sub {warn $msg}; }