in reply to Net::SSH::Perl kills perl from within an eval

I found http://www.perlmonks.org/?node_id=580411 after deeper digging. It sounds possible. I also got 141 for $? after the silent exit.

I'll have to throw in a suite of signal handlers to call out when they get called to see if it explains anything.

  • Comment on Re: Net::SSH::Perl kills perl from within an eval

Replies are listed 'Best First'.
Re^2: Net::SSH::Perl kills perl from within an eval
by ikegami (Patriarch) on Oct 28, 2008 at 02:21 UTC
    That means it died from signal 13 (141 & 127). See man kill for a list. On my linux system, that's SIGPIPE, a very likely signal in the situation you presented.