diff options
author | Jerry D. Hedden <jdhedden@cpan.org> | 2009-06-19 13:00:40 -0400 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2009-06-21 08:09:40 +0200 |
commit | 63790022394e4278430e337fa8d8576711061741 (patch) | |
tree | b23f67a7d19e8886f76c678eb313053b30145601 /ext/threads-shared/shared.pm | |
parent | cb097e7a7eb1098f10246724baff2d8189ac41c5 (diff) | |
download | perl-63790022394e4278430e337fa8d8576711061741.tar.gz |
Upgrade to threads::shared 1.29
Diffstat (limited to 'ext/threads-shared/shared.pm')
-rw-r--r-- | ext/threads-shared/shared.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/threads-shared/shared.pm b/ext/threads-shared/shared.pm index 6f606b0181..722e3ceb73 100644 --- a/ext/threads-shared/shared.pm +++ b/ext/threads-shared/shared.pm @@ -7,7 +7,7 @@ use warnings; use Scalar::Util qw(reftype refaddr blessed); -our $VERSION = '1.28'; +our $VERSION = '1.29'; my $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -187,7 +187,7 @@ threads::shared - Perl extension for sharing data structures between threads =head1 VERSION -This document describes threads::shared version 1.28 +This document describes threads::shared version 1.29 =head1 SYNOPSIS @@ -401,7 +401,7 @@ important to check the value of the variable and go back to waiting if the requirement is not fulfilled. For example, to pause until a shared counter drops to zero: - { lock($counter); cond_wait($count) until $counter == 0; } + { lock($counter); cond_wait($counter) until $counter == 0; } =item cond_timedwait VARIABLE, ABS_TIMEOUT @@ -588,7 +588,7 @@ L<threads::shared> Discussion Forum on CPAN: L<http://www.cpanforum.com/dist/threads-shared> Annotated POD for L<threads::shared>: -L<http://annocpan.org/~JDHEDDEN/threads-shared-1.28/shared.pm> +L<http://annocpan.org/~JDHEDDEN/threads-shared-1.29/shared.pm> Source repository: L<http://code.google.com/p/threads-shared/> |