Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^2: CTRL+C Handling in Perl Threads

by anshumangoyal (Scribe)
on Nov 27, 2012 at 10:19 UTC ( [id://1005827]=note: print w/replies, xml ) Need Help??


in reply to Re: CTRL+C Handling in Perl Threads
in thread CTRL+C Handling in Perl Threads

I am using this in Linux/Unix. So Windows is not an issue for me. Can you help me in Unix. Here is my updated sample code:
use strict; use threads; no warnings 'threads'; our @ThreadsArr; $SIG{INT} = \&INT_HANDLER; $| = 1; sub INT_HANDLER { print "Received Interrupt. Stopping Main Program\n"; } for (my $ii = 0; $ii < 10; $ii++) { my $Thread = threads->new( "Thread_SUB", $ii ); push (@ThreadsArr, $Thread); } foreach (@ThreadsArr) { $_->join(); } sub Thread_SUB { my $thread_id = shift; $SIG{'KILL'} = sub { print "Killing Thread $thread_id\n"; threads->exit(); }; for (my $ii = 0; $ii <= 15; $ii++) { print "$thread_id - Sleeping $ii\n"; sleep 1; } }
This program is not acknowledging the interrupts when sent as ctrl+c

Replies are listed 'Best First'.
Re^3: CTRL+C Handling in Perl Threads
by remiah (Hermit) on Nov 27, 2012 at 10:54 UTC

    I am working on FreeBSD.

    First example showed me SIG_INT message with correcting a few typo. This time also shows me message like

    0 - Sleeping 14
    ^CReceived Interrupt. Stopping Main Program   <==pressed ctrl+c
    
    I wonder why?

    Could you send SIG INT from another terminal? I mean by kill command.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (3)
As of 2024-04-20 01:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found