summaryrefslogtreecommitdiff
path: root/pod/perlintern.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-12-16 17:09:27 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-12-16 17:09:27 +0000
commita8586c98e47ea8c3206b047478e3ffd5ffac5a36 (patch)
tree7082cbf37530831a8d8a365f42159229a78ed196 /pod/perlintern.pod
parentf9172815abf2357cc8661dd092b8830b9ecd8186 (diff)
downloadperl-a8586c98e47ea8c3206b047478e3ffd5ffac5a36.tar.gz
Few uncheckedin files.
p4raw-id: //depot/perl@8141
Diffstat (limited to 'pod/perlintern.pod')
-rw-r--r--pod/perlintern.pod24
1 files changed, 24 insertions, 0 deletions
diff --git a/pod/perlintern.pod b/pod/perlintern.pod
index 11d9385181..b63b694131 100644
--- a/pod/perlintern.pod
+++ b/pod/perlintern.pod
@@ -12,6 +12,18 @@ B<they are not for use in extensions>!
=over 8
+=item 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.)
+
+ djSP;
+
+=for hackers
+Found in file pp.h
+
=item is_gv_magical
Returns C<TRUE> if given the name of a magical GV.
@@ -27,6 +39,18 @@ allow selecting particular classes of magical variable.
=for hackers
Found in file gv.c
+=item start_glob
+
+Function called by C<do_readline> to spawn a glob (or do the glob inside
+perl on VMS). This code used to be inline, but now perl uses C<File::Glob>
+this glob starter is only used by miniperl during the build proccess.
+Moving it away shrinks pp_hot.c; shrinking pp_hot.c helps speed perl up.
+
+ PerlIO* start_glob(SV* pattern, IO *io)
+
+=for hackers
+Found in file doio.c
+
=back
=head1 AUTHORS