Giter Club home page Giter Club logo

p5-devel-unwind's People

Contributors

andreasgudmundsson avatar avereha avatar rgs avatar

Stargazers

 avatar

Watchers

 avatar

p5-devel-unwind's Issues

segfault on unwrap in signal handler with localized $SIG{__DIE__}

On all the versions perlbrew gives me after 5.18.4 (the earliest of which is 5.20.3), the following script exits with a segfault:

use v5.12;
use Devel::Unwind;

say $^V;
$SIG{__DIE__} = sub { say "oh no" };

alarm 1;

mark HI {
    local $SIG{ALRM} = sub {
        local $SIG{__DIE__};
        unwind HI "BYE";
    };

    sleep 3;
};

$@ and say $@;

A log of the runs with the various perls:
segfault_signal_run.txt

segfault on unwrap in eval with localized $SIG{__DIE__}

I originally thought this was the same as #3 but it turns out it affects different perl versions so I'm no longer so certain. The following gives segfaults on all my perl versions >= 5.24.0:

use v5.12;
use Devel::Unwind;

say $^V;
$SIG{__DIE__} = sub { say "oh no" };

mark HI {
    eval {
        local $SIG{__DIE__};
        unwind HI "BYE";
    };
};

$@ and say $@;

Log file:
segfault_run.txt

Note that if you remove the local $SIG{__DIE__}, something slightly different happens:

perl-5.22.3
==========
v5.22.3
oh no
BYE at segfault.pl line 11.


perl-5.24.1
==========
v5.24.1
oh no
BYE at segfault.pl line 10.

perl begins to report the unwinding starting from the beginning of the eval BLOCK rather than from the unwind call.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.