diff options
Diffstat (limited to 'dist/threads-shared/shared.pm')
-rw-r--r-- | dist/threads-shared/shared.pm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/dist/threads-shared/shared.pm b/dist/threads-shared/shared.pm index 72192bc7a0..15e7a021be 100644 --- a/dist/threads-shared/shared.pm +++ b/dist/threads-shared/shared.pm @@ -7,7 +7,7 @@ use warnings; use Scalar::Util qw(reftype refaddr blessed); -our $VERSION = '1.32'; +our $VERSION = '1.33'; 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.32 +This document describes threads::shared version 1.33 =head1 SYNOPSIS @@ -527,7 +527,8 @@ that the contents of hash-based objects will be lost due to the above mentioned limitation. See F<examples/class.pl> (in the CPAN distribution of this module) for how to create a class that supports object sharing. -Does not support C<splice> on arrays! +Does not support C<splice> on arrays. Does not support explicitly changing +array lengths via $#array -- use C<push> and C<pop> instead. Taking references to the elements of shared arrays and hashes does not autovivify the elements, and neither does slicing a shared array/hash over @@ -588,7 +589,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.32/shared.pm> +L<http://annocpan.org/~JDHEDDEN/threads-shared-1.33/shared.pm> Source repository: L<http://code.google.com/p/threads-shared/> |