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


in reply to Re: Bizarre Proc::Daemon error # die-handler
in thread Bizarre Proc::Daemon error

I'm not sure I understand what you're saying here: eval will trap death, even when invoked from a __DIE__ handler:

% perl -wl local $SIG{__DIE__} = sub { print "in handler (@_)"; die "from handler"; }; eval { die "foo" }; print "eval returned (but knows the error was <$@>)"; __END__ in handler (foo at - line 5. ) eval returned (but knows the error was <from handler at - line 3. >) %

Hugo

Replies are listed 'Best First'.
Re^3: Bizarre Proc::Daemon error # die-handler
by LanX (Saint) on Jun 12, 2014 at 12:12 UTC
    Strange ...

    ... your snippet runs identically on my machine and I can't reproduce anymore what I saw (!?!)

    Most likely I was wrong about why the OP's program aborts.

    Cheers Rolf

    (addicted to the Perl Programming Language)