my $done : shared = 0; my $results : shared; async { $results = someLongRunningFunction(); ++$done; }; # do other stuff ... if( $done ) { ## use $results; }