I wrote sample code of thread control using signaling as advised by monks. As below, but the thread didn't exit when Ctrl+c pressed:
#/usr/bin/perl -w
use strict;
use warnings;
use threads;
use threads::shared;
my @thrList;
my $count=1;
share $count;
$SIG{INT} = \&catch_CtrlC;
&main;
sub main
{
my $counter = 3;
while($counter)
{
$counter--;
my $thrHandle = threads->create(\&thrdfun);
push @thrList, $thrHandle;
}
print " waiting \n";
foreach(@thrList){
$_->join();
}
}
sub thrdfun
{
$SIG{INT} = \&trExit;
print "thrdfun: $count \n";
$count++;
while(1){
}
exit;
}
sub trExit
{
print " exit \n";
threads->exit();
}
sub catch_CtrlC
{
print " catch_CtrlC \n";
foreach(@thrList){
$_->kill("INT");
}
exit;
}
In my plan, catch_CtrlC will first receive the signal and forward it to all thread one by one. For every thread, the trExit will do sth. and exit.
I guess I'm using in a wrong way, righ?
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.