diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-06-09 16:58:47 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-06-09 16:58:47 +0000 |
commit | d5ccb752621ed87abb86cf9caac2e70571ecfe68 (patch) | |
tree | 508759c2e911eeab3103647fca4262bb81fcab88 /pod/perlfunc.pod | |
parent | 19f7f51e90250f5d789968dd6dee2f966766468d (diff) | |
download | perl-d5ccb752621ed87abb86cf9caac2e70571ecfe68.tar.gz |
Closer to the truth.
p4raw-id: //depot/perl@17140
Diffstat (limited to 'pod/perlfunc.pod')
-rw-r--r-- | pod/perlfunc.pod | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index b173cdd7df..3f4d67619b 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -3110,7 +3110,9 @@ to have its own copy of the global.) Examples: our $VERSION : unique = "1.00"; Note that this attribute also has the effect of making the global -readonly when the first new interpreter is cloned. +readonly in the main interpreter after the first new interpreter +has been cloned (for example, after the first new thread has been +created). Multi-interpreter environments can come to being either through the fork() emulation on Windows platforms, or by embedding perl in a |