p4raw-id: //depot/perl@16452
our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
our @EXPORT = qw(
-
+async
);
our $VERSION = '0.99';
return 0;
}
+sub async (&;@) {
+ my $cref = shift;
+ return threads->new($cref,@_);
+}
+
$threads::threads = 1;
bootstrap threads $VERSION;