diff options
author | Vincent Pit <perl@profvince.com> | 2008-02-23 13:04:43 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-02-25 08:10:14 +0000 |
commit | 0a3a8dc0cd7227e83cd26fe236d1ad57c4add668 (patch) | |
tree | 93ea833cad3e0f2da490c1e6da862f50d4c947cf /pod/perlxs.pod | |
parent | 14278b9c7901c0c5256db8ee3633d0f32ab6fa8e (diff) | |
download | perl-0a3a8dc0cd7227e83cd26fe236d1ad57c4add668.tar.gz |
Re: [PATCH] POD fixes
Message-ID: <47BFFDCB.60107@profvince.com>
p4raw-id: //depot/perl@33366
Diffstat (limited to 'pod/perlxs.pod')
-rw-r--r-- | pod/perlxs.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlxs.pod b/pod/perlxs.pod index c045564a6d..f88565bf17 100644 --- a/pod/perlxs.pod +++ b/pod/perlxs.pod @@ -2007,7 +2007,7 @@ comma, i.e. C<_aMY_CXT>, C<aMY_CXT_>, C<_pMY_CXT> and C<pMY_CXT_>. =item MY_CXT_CLONE By default, when a new interpreter is created as a copy of an existing one -(eg via C<<threads->create()>>), both interpreters share the same physical +(eg via C<< threads->create() >>), both interpreters share the same physical my_cxt_t structure. Calling C<MY_CXT_CLONE> (typically via the package's C<CLONE()> function), causes a byte-for-byte copy of the structure to be taken, and any future dMY_CXT will cause the copy to be accessed instead. |