Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Problem with signal handler

by ChOas (Curate)
on Nov 21, 2007 at 11:46 UTC ( [id://652107]=note: print w/replies, xml ) Need Help??


in reply to Problem with signal handler

Hi! Just keep track in your parent to see if/how many times ctrl-c was pressed: like :
[...] my $pid = fork; my $dontDie = 2; [...]
And then in your Interrupt routine:
$SIG{INT} = sub { die "This is the end" unless --$dontDie; warn "Sending sig INT to child PID $pid"; kill 'INT' => $pid; };
(This is just a quick fix, do please pay close attention to jbert's comments)

GreetZ!,
    ChOas

print "profeth still\n" if /bird|devil/;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (6)
As of 2024-04-18 17:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found