Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

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.

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":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (6)
As of 2024-04-24 09:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found