Help for this page

Select Code to Download


  1. or download this
        my ($thr) = threads->create('foo');
        ...
        my @results = $thr->join();
    
  2. or download this
        use threads 1.31;
    
    ...
        foreach my $thr (threads->list()) {
            my $rc = $thr->join();
        }