diff options
author | Johan Vromans <jvromans@squirrel.nl> | 2002-06-09 14:41:18 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-06-09 15:08:20 +0000 |
commit | f69c1b32fbc1a1348f4cb6eadbb919fc9d0341cb (patch) | |
tree | f2a36d29717258771b23e62312a6390cc7081773 /pod | |
parent | 614d5782dc850ab9e056943cabc21f93f8af995a (diff) | |
download | perl-f69c1b32fbc1a1348f4cb6eadbb919fc9d0341cb.tar.gz |
[Patch] CLONE is not in perldelta
Message-ID: <15619.12494.713591.282001@phoenix.squirrel.nl>
p4raw-id: //depot/perl@17129
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldelta.pod | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod index c3a3bb85bf..9b3e93843e 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -688,6 +688,16 @@ C<Use of /c modifier is meaningless in s///>. Use of C</g> with C<split> elicits C<Use of /g modifier is meaningless in split>. +=item * + +Support for the C<CLONE> keyword had been added. With ithreads, when a +new thread is created, all perl data is cloned, however non perl data +cannot be cloned. C<CLONE> will be executed once for every package +that has it defined or inherited. It will be called in the context of +the new thread, so all modifications are made in the new area. + +See L<perlmod> + =back =head1 Modules and Pragmata |