diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-16 04:48:16 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-16 04:48:16 +0000 |
commit | d7ceb7fc1159206a67f149394fc7aa55f6b4f7dd (patch) | |
tree | f6a6619d3ecf0674bdefc96d205135f75dcf45f4 /lib/Thread.pm | |
parent | 4038bebf1e10fe7b46c1e36dbec84ce8b696de6b (diff) | |
download | perl-d7ceb7fc1159206a67f149394fc7aa55f6b4f7dd.tar.gz |
Avoid redefinedness warning for now.
p4raw-id: //depot/perl@13040
Diffstat (limited to 'lib/Thread.pm')
-rw-r--r-- | lib/Thread.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Thread.pm b/lib/Thread.pm index d3e27e1661..c6489541bb 100644 --- a/lib/Thread.pm +++ b/lib/Thread.pm @@ -316,7 +316,8 @@ BEGIN { no strict 'refs'; *{"Thread::$m"} = \&{"threads::shared::${m}_enabled"}; } - unimplement(qw(list done eval flags)); + # trying to unimplement eval gives redefined warning + unimplement(qw(list done flags)); } elsif ($othreads) { XSLoader::load 'Thread'; unimplement(qw(unlock)); |