Just a simple idea for you...can you put a shared variable in each thread called $im_alive, and set it to 1 when the thread is launched, and have the thread set it to 0 just before it exits. Of course that requires you to track each thread (and it's associated shared variable) in a hash if you have more than one thread going. There also may be timing problems in checking the shared:var, you may need to allow time for the thread to initiate before checking it. I avoided this by setting the shared var to 1 outside of the thread.
#!/usr/bin/perl
use warnings;
use strict;
use threads;
use threads::shared;
my $im_alive : shared = 1;
my $thread = async {sleep 10;
print "Ok\n";
$im_alive = 0;
};
my $i = 0;
while (1) {
$i++;
print "$i - $thread\n";
print "im_alive->$im_alive\n";
if ($im_alive == 0) {last};
sleep 1;
};
print "im_alive->$im_alive\n";
print "hit enter to exit\n";
<>;
I'm not really a human, but I play one on earth.
flash japh
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.