1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
use Thread 'async'; $t = async { print "here\n"; die "success"; print "shouldn't get here\n"; }; sleep 1; print "joining...\n"; eval { @r = $t->join; }; if ($@) { print "thread died with message: $@"; } else { print "thread failed to die successfully\n"; }