diff options
author | Michael Stevens <mstevens@etla.org> | 2000-12-06 23:24:01 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-12-08 15:25:08 +0000 |
commit | fac3506f11803acc27862962d9412fc8535bd7b6 (patch) | |
tree | 69cf8f8bc633d552767ca7379feea51d921a9fa6 /pp.h | |
parent | 14fb07c1e84e29615c776183d59ae44bd5e7f83e (diff) | |
download | perl-fac3506f11803acc27862962d9412fc8535bd7b6.tar.gz |
djSP
Message-ID: <20001206232400.A21381@firedrake.org>
Plus a note from Nick Ing-Simmons.
p4raw-id: //depot/perl@8038
Diffstat (limited to 'pp.h')
-rw-r--r-- | pp.h | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -33,6 +33,13 @@ L<perlcall>. Declares a local copy of perl's stack pointer for the XSUB, available via the C<SP> macro. See C<SP>. +=for apidoc ms||djSP + +Declare Just C<SP>. This is actually identical to C<dSP>, and declares +a local copy of perl's stack pointer, available via the C<SP> macro. +See C<SP>. (Available for backward source code compatibility with the +old (Perl 5.005) thread model.) + =for apidoc Ams||dMARK Declare a stack marker variable, C<mark>, for the XSUB. See C<MARK> and C<dORIGMARK>. @@ -46,8 +53,7 @@ The original stack mark for the XSUB. See C<dORIGMARK>. =for apidoc Ams||SPAGAIN Refetch the stack pointer. Used after a callback. See L<perlcall>. -=cut -*/ +=cut */ #define SP sp #define MARK mark |