Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Re: Things you need to know before programming Perl ithreads

by liz (Monsignor)
on Aug 31, 2003 at 18:18 UTC ( [id://288049]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use threads ();
    use threads::shared ();
    ...
    push( @thread,threads->new( sub { $scalar++ for 1..100000 } ) ) for 1.
    +.10;
    $_->join foreach @thread; # wait for all threads to finish 
    print "scalar = $scalar\n";
    
  2. or download this
    use threads ();
    use threads::shared ();
    ...
    } ) ) for 1..10;
    $_->join foreach @thread; # wait for all threads to finish
    print "scalar = $scalar\n";
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://288049]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (9)
As of 2024-03-28 10:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found