Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Signal::StackTrace not working?

by Athanasius (Archbishop)
on Oct 12, 2014 at 03:13 UTC ( [id://1103535]=note: print w/replies, xml ) Need Help??


in reply to Signal::StackTrace not working?

Hello perlancar,

I’m seeing the same behaviour on Windows. I think the problem is that the trace is given from the vantage point of the statement immediately following the statement that was in effect when the signal was received. I played around with the following script:

#!perl use strict; use warnings; use Signal::StackTrace::CarpLike qw( INT ); f(); print "After f()\n"; sub f { g(); } sub g { sleep 5; print "In g(), after sleep\n"; }

Output:

13:05 >perl 1052_SoPW.pl INT at 1052_SoPW.pl line 13. eval {...} called at 1052_SoPW.pl line 13 main::g() called at 1052_SoPW.pl line 9 main::f() called at 1052_SoPW.pl line 6 In g(), after sleep After f() 13:05 >

Note the line number: line 13 is the print statement following sleep. And with that print statement commented out:

13:05 >perl 1052_SoPW.pl INT at 1052_SoPW.pl line 7. eval {...} called at 1052_SoPW.pl line 7 After f() 13:07 >

The INT signal is now reported as having been received after sub g returned, because sleep happened to be the last statement in the sub. And the stack trace shown is correct as from the viewpoint of line 7.

This looks like a fairly serious bug to me.

Hope that helps,

Athanasius <°(((><contra mundum Iustus alius egestas vitae, eros Piratica,

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-25 12:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found