summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorJerry Hedden <jdhedden@yahoo.com>2006-10-12 00:47:37 -0700
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-10-12 14:52:42 +0000
commit7446b2eb9aec0607a1f998085f2e7dc809540822 (patch)
tree2f0532b27be9d56cb0650f656346989e0e661174 /ext
parentde42e62afe2397fdb786826843b9d1c39044c4b5 (diff)
downloadperl-7446b2eb9aec0607a1f998085f2e7dc809540822.tar.gz
threads::shared 1.04
Message-ID: <20061012144737.56305.qmail@web30207.mail.mud.yahoo.com> p4raw-id: //depot/perl@29003
Diffstat (limited to 'ext')
-rw-r--r--ext/threads/shared/shared.pm9
1 files changed, 5 insertions, 4 deletions
diff --git a/ext/threads/shared/shared.pm b/ext/threads/shared/shared.pm
index 4ab12db988..c2595f2fb6 100644
--- a/ext/threads/shared/shared.pm
+++ b/ext/threads/shared/shared.pm
@@ -5,7 +5,7 @@ use 5.008;
use strict;
use warnings;
-our $VERSION = '1.03';
+our $VERSION = '1.04';
my $XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
@@ -73,7 +73,7 @@ threads::shared - Perl extension for sharing data structures between threads
=head1 VERSION
-This document describes threads::shared version 1.03
+This document describes threads::shared version 1.04
=head1 SYNOPSIS
@@ -345,7 +345,8 @@ It is often not wise to share an object unless the class itself has been
written to support sharing. For example, an object's destructor may get called
multiple times, one for each thread's scope exit. Another example, is that
the contents of hash-based objects will be lost due to the above mentioned
-limitation.
+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!
@@ -367,7 +368,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.03/shared.pm>
+L<http://annocpan.org/~JDHEDDEN/threads-shared-1.04/shared.pm>
L<threads>, L<perlthrtut>