I have a script that runs a test on a list of test_objects. These tests all run concurrently using threads. Should a test fail at anytime, I would like to stop all other running threads and safely exit out of the program.
sub test1252 {
my @jobs = ();
foreach my $test_obj (@objects) {
push @jobs, async {
my $rc = test($test_obj);
if ($rc ne 0) {
print "Test Failed for $test_obj\n";
local $SIG{'KILL'} = sub {threads->exit();};
$_->kill('KILL')->join() for @jobs;
exit $code_blue;
}
};
}
$_->join for @jobs;
}
I get something like this using 'kill' with the handler
Perl exited with active threads:
9 running and unjoined
0 finished and unjoined
0 running and detached
It doesn't appear that all the threads have died upon program exit, so I'm sure I'm not doing something right...
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.