Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^2: Bizarre Proc::Daemon error # die-handler

by hv (Prior)
on Jun 12, 2014 at 08:41 UTC ( [id://1089670]=note: print w/replies, xml ) Need Help??


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)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1089670]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (3)
As of 2024-03-19 07:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found