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