diff options
author | Mark Murray <markm@FreeBSD.org> | 2002-05-16 10:09:28 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 2002-05-16 10:09:28 +0000 |
commit | e077a8bde9a7e0d2954d5b422667b40ce3c14240 (patch) | |
tree | e28fc632241c9d248069d45dd9ab2a41fa64868f /contrib/perl5/ext/Thread/join.t | |
parent | f72674c5403101ace9faf0ba70fe9442d6ea96c3 (diff) |
Perl is no longer in base. Long live the port!
Notes
Notes:
svn path=/head/; revision=96723
Diffstat (limited to 'contrib/perl5/ext/Thread/join.t')
-rw-r--r-- | contrib/perl5/ext/Thread/join.t | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/contrib/perl5/ext/Thread/join.t b/contrib/perl5/ext/Thread/join.t deleted file mode 100644 index cba2c1cf5671..000000000000 --- a/contrib/perl5/ext/Thread/join.t +++ /dev/null @@ -1,11 +0,0 @@ -use Thread; -sub foo { - print "In foo with args: @_\n"; - return (7, 8, 9); -} - -print "Starting thread\n"; -$t = new Thread \&foo, qw(foo bar baz); -print "Joining with $t\n"; -@results = $t->join(); -print "Joining returned ", scalar(@results), " values: @results\n"; |