diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-01 03:38:03 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-01 03:38:03 +0000 |
commit | 2fa86c13816417d1d62616d1bb8114a5a9831c33 (patch) | |
tree | 2e7c243773cb4d59d9b7b093339f7a6993fb9ddf /pod/perlguts.pod | |
parent | 2be4c08b6f13de9eea531f8a8a2229b3bd245b1a (diff) | |
download | perl-2fa86c13816417d1d62616d1bb8114a5a9831c33.tar.gz |
Windows miscellany
p4raw-id: //depot/perl@5388
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r-- | pod/perlguts.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 2686c3991b..58bcea3d1a 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -1672,14 +1672,14 @@ Thus, something like: in your extesion will translate to this when PERL_IMPLICIT_CONTEXT is in effect: - Perl_sv_setsv(GetPerlInterpreter(), asv, bsv); + Perl_sv_setsv(Perl_get_context(), asv, bsv); or to this otherwise: Perl_sv_setsv(asv, bsv); You have to do nothing new in your extension to get this; since -the Perl library provides GetPerlInterpreter(), it will all just +the Perl library provides Perl_get_context(), it will all just work. The second, more efficient way is to use the following template for |