- or download this
sub australianNationalUniversity {
use AustralianNationalUniversity;
...
lock(@searchResults);
push ( @searchResults, @results );
}
- or download this
# at the beginning of your code:
use GenericSearch;
...
lock(@searchResults);
push ( @searchResults, @results );
}
- or download this
my @search = grep /^_/, param();
...
# and finally, join them when done
$_->join for @thread;