If you can't upgrade to a recent version of threads (why?), then you can achieve something similar with a shared variable (or hash as shown here if you will have multiple threads):

#!/usr/bin/perl use strict; use warnings; use threads; use threads::shared; use Data::Dumper; my %running :shared; my $thread1 = threads::async { { lock %running; $running{ threads->tid } = 1; } my $sleep = int(rand() * 5); printf "thread: %d sleeping for %d seconds\n", threads->tid, $slee +p; sleep($sleep); printf "thread: %d Awakes\n", threads->tid; lock %running; delete $running{ threads->tid }; printf "thread: %d about to return\n", threads->tid; return($sleep); }; print "Main sleeping for 2\n"; sleep(3); print "Main awakes\n"; if( exists $running{ $thread1->tid } ) { print 'email("alert")' . "\n"; } else { print "Thread finished in time, no problem\n"; } print "Thread eventually returned ".$thread1->join()."\n"; print "Exit\n"; __END__ C:\test>junk Main sleeping for 2 thread: 1 sleeping for 2 seconds thread: 1 Awakes thread: 1 about to return Main awakes Thread finished in time, no problem Thread eventually returned 2 Exit C:\test>junk Main sleeping for 2 thread: 1 sleeping for 0 seconds thread: 1 Awakes thread: 1 about to return Main awakes Thread finished in time, no problem Thread eventually returned 0 Exit C:\test>junk Main sleeping for 2 thread: 1 sleeping for 3 seconds Main awakes thread: 1 Awakes email("alert") thread: 1 about to return Thread eventually returned 3 Exit

Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
RIP PCW

In reply to Re: $thread->is_running() in perl 5.8.8 - catching slow threads by BrowserUk
in thread $thread->is_running() in perl 5.8.8 - catching slow threads by brycen

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.