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,


In reply to Re: Signal::StackTrace not working? by Athanasius
in thread Signal::StackTrace not working? by perlancar

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.