summaryrefslogtreecommitdiff
path: root/pod/perlxs.pod
diff options
context:
space:
mode:
authorJerry D. Hedden <jdhedden@cpan.org>2007-02-12 04:04:33 -0800
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-02-15 09:34:01 +0000
commit878090d5582120ef9336936d4fc06895b4fd242a (patch)
treeb937d124e5c21f6581ac096678f212c38b29f246 /pod/perlxs.pod
parente9950d3b0610b91bb9d19cb0918fe7e81505fd79 (diff)
downloadperl-878090d5582120ef9336936d4fc06895b4fd242a.tar.gz
Use newer 'threads' constructs
From: "Jerry D. Hedden" <jdhedden@yahoo.com> Message-ID: <844555.64815.qm@web30202.mail.mud.yahoo.com> p4raw-id: //depot/perl@30310
Diffstat (limited to 'pod/perlxs.pod')
-rw-r--r--pod/perlxs.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlxs.pod b/pod/perlxs.pod
index 6d14bae275..61e023f3a6 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->new()>>), 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.