diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-07-12 23:44:17 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-07-12 23:44:17 +0000 |
commit | 83272a45226e83bd136d713158e9b44ace2dbc8d (patch) | |
tree | ee348b24fc5020ccd9e375cef8a5eb8e2bcd3d77 /ext/threads/shared/shared.pm | |
parent | 484fdf61e8653b10160ba1e8011888f52ab6825a (diff) | |
download | perl-83272a45226e83bd136d713158e9b44ace2dbc8d.tar.gz |
threads::shared::queue and semaphore become Thread::Semaphore
and Queue. The 5005threads case where the old Semaphore and
Queue.pm (they are disguised as .pmx) should get magically
installed instead has not been tested.
p4raw-id: //depot/perl@17509
Diffstat (limited to 'ext/threads/shared/shared.pm')
-rw-r--r-- | ext/threads/shared/shared.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/threads/shared/shared.pm b/ext/threads/shared/shared.pm index d464caddf7..3016039b83 100644 --- a/ext/threads/shared/shared.pm +++ b/ext/threads/shared/shared.pm @@ -116,7 +116,7 @@ C<lock(\$a)> is equivalent to C<lock($a)>, while C<lock(\\$a)> is not. Note that you cannot explicitly unlock a variable; you can only wait for the lock to go out of scope. If you need more fine-grained -control, see L<threads::shared::semaphore>. +control, see L<Thread::Semaphore>. =item cond_wait VARIABLE |