Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: How to kill perl?

by Steve_p (Priest)
on Nov 05, 2005 at 19:25 UTC ( [id://506019]=note: print w/replies, xml ) Need Help??


in reply to How to kill perl?

perl -e 'undef %:: or die'

I'm testing a fix to this in bleadperl and it appears to have it fixed. Should be available later today. By the way...

perl -e 'undef %:: or warn'

was equally broken.

Replies are listed 'Best First'.
Re^2: How to kill perl?
by robin (Chaplain) on Nov 05, 2005 at 22:15 UTC

    I don't think this really has to do with die specifically. For example,

    perl -e 'undef %::; sub{}->()'
    crashes too. Lots of thing crash when you've totalled the defstash! But perhaps that just indicates a pervasive assumption, which really needs to be fixed in lots of different places.

    See also bug 32401.

    PS. Getting a bit more targeted:

    perl -e 'delete $::{"@"}; warn' ;# crashes perl -e 'delete $::{"@"}; sub{}->()' ;# doesn't crash perl -e 'delete $::{"_"}; warn' ;# doesn't crash perl -e 'delete $::{"_"}; sub{}->()' ;# crashes

    I suppose that wiping out important global variables oughtn't to be allowed, really.

    PPS. Let's see what the p5p hive mind thinks.

Re^2: How to kill perl?
by Steve_p (Priest) on Nov 05, 2005 at 20:54 UTC
    Ugh! Spoke too soon. My fix kills some of the more exotic functionality of die(). Well, at least I know I'm on the right track.

Log In?
Username:
Password:

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

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

    No recent polls found