in reply to about THREAD SIGNALLING
#/usr/bin/perl use strict; use warnings; use threads; use threads::shared; my @thrList; my $count = 1; share $count; my $counter = 3; while($counter) { $counter--; my $thrHandle = threads->create(\&thrdfun); push @thrList, $thrHandle; } foreach(@thrList){ $_->join(); } sub thrdfun { sub catch_CtrlC { $SIG{'INT'} = threads->kill('TERM'); } $SIG{INT} = \&catchCtrlC; print "thrdfun: $count \n"; $count++; while(1){ (); } exit; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: about THREAD SIGNALLING
by anaconda_wly (Scribe) on Apr 23, 2013 at 06:55 UTC | |
by Khen1950fx (Canon) on Apr 23, 2013 at 08:26 UTC | |
by anaconda_wly (Scribe) on Apr 23, 2013 at 08:44 UTC | |
by anaconda_wly (Scribe) on Apr 23, 2013 at 07:15 UTC |