diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-09-03 06:15:09 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-09-03 06:15:09 +0000 |
commit | ec54d15e771f3e1743fa1e0875e55fa2ae8a5e28 (patch) | |
tree | 29a9f18b9fc6ad0af6bb30ba96cef2318b7881aa /ext/threads | |
parent | dc6d0c4f0dc8290035f9541d4ee259b8bfea7456 (diff) | |
download | perl-ec54d15e771f3e1743fa1e0875e55fa2ae8a5e28.tar.gz |
use IO; is deprecated.
p4raw-id: //depot/perl@21013
Diffstat (limited to 'ext/threads')
-rw-r--r-- | ext/threads/t/join.t | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/threads/t/join.t b/ext/threads/t/join.t index 033b837482..cef059fd45 100644 --- a/ext/threads/t/join.t +++ b/ext/threads/t/join.t @@ -141,10 +141,10 @@ if ($^O eq 'linux') { } { - # The "use IO" is not actually used for anything; its only purpose is to - # incite a lot of calls to newCONSTSUB. See the p5p archives for - # the thread "maint@20974 or before broke mp2 ithreads test". - use IO; + # The "use IO::File" is not actually used for anything; its only + # purpose is to incite a lot of calls to newCONSTSUB. See the p5p + # archives for the thread "maint@20974 or before broke mp2 ithreads test". + use IO::File; $_->join for map threads->new(sub{ok($_, "stress newCONSTSUB")}), 1..2; } |