version 1 showing authors affecting page license.
.
Rev |
Author |
# |
Line |
1 |
perry |
1 |
PERLINTERN |
|
|
2 |
!!!PERLINTERN |
|
|
3 |
NAME |
|
|
4 |
DESCRIPTION |
|
|
5 |
AUTHORS |
|
|
6 |
SEE ALSO |
|
|
7 |
---- |
|
|
8 |
!!NAME |
|
|
9 |
|
|
|
10 |
|
|
|
11 |
perlintern - autogenerated documentation of purely __internal__ Perl functions |
|
|
12 |
!!DESCRIPTION |
|
|
13 |
|
|
|
14 |
|
|
|
15 |
This file is the autogenerated documentation of functions in |
|
|
16 |
the Perl interpreter that are documented using Perl's |
|
|
17 |
internal documentation format but are not marked as part of |
|
|
18 |
the Perl API . In other words, __they are |
|
|
19 |
not for use in extensions__! |
|
|
20 |
|
|
|
21 |
|
|
|
22 |
is_gv_magical |
|
|
23 |
|
|
|
24 |
|
|
|
25 |
Returns TRUE if given the name of a magical |
|
|
26 |
GV . |
|
|
27 |
|
|
|
28 |
|
|
|
29 |
Currently only useful internally when determining if a |
|
|
30 |
GV should be created even in rvalue |
|
|
31 |
contexts. |
|
|
32 |
|
|
|
33 |
|
|
|
34 |
flags is not used at present but available for |
|
|
35 |
future extension to allow selecting particular classes of |
|
|
36 |
magical variable. |
|
|
37 |
|
|
|
38 |
|
|
|
39 |
bool is_gv_magical(char *name, STRLEN len, U32 flags) |
|
|
40 |
|
|
|
41 |
|
|
|
42 |
LVRET |
|
|
43 |
|
|
|
44 |
|
|
|
45 |
True if this op will be the return value of an lvalue |
|
|
46 |
subroutine |
|
|
47 |
|
|
|
48 |
|
|
|
49 |
PL_DBsingle |
|
|
50 |
|
|
|
51 |
|
|
|
52 |
When Perl is run in debugging mode, with the __-d__ |
|
|
53 |
switch, this SV is a boolean which indicates |
|
|
54 |
whether subs are being single-stepped. Single-stepping is |
|
|
55 |
automatically turned on after every step. This is the C |
|
|
56 |
variable which corresponds to Perl's $DB::single |
|
|
57 |
variable. See PL_DBsub. |
|
|
58 |
|
|
|
59 |
|
|
|
60 |
SV * PL_DBsingle |
|
|
61 |
|
|
|
62 |
|
|
|
63 |
PL_DBsub |
|
|
64 |
|
|
|
65 |
|
|
|
66 |
When Perl is run in debugging mode, with the __-d__ |
|
|
67 |
switch, this GV contains the |
|
|
68 |
SV which holds the name of the sub being |
|
|
69 |
debugged. This is the C variable which corresponds to Perl's |
|
|
70 |
$DB::sub variable. See |
|
|
71 |
PL_DBsingle. |
|
|
72 |
|
|
|
73 |
|
|
|
74 |
GV * PL_DBsub |
|
|
75 |
|
|
|
76 |
|
|
|
77 |
PL_DBtrace |
|
|
78 |
|
|
|
79 |
|
|
|
80 |
Trace variable used when Perl is run in debugging mode, with |
|
|
81 |
the __-d__ switch. This is the C variable which |
|
|
82 |
corresponds to Perl's $DB::trace variable. See |
|
|
83 |
PL_DBsingle. |
|
|
84 |
|
|
|
85 |
|
|
|
86 |
SV * PL_DBtrace |
|
|
87 |
|
|
|
88 |
|
|
|
89 |
PL_dowarn |
|
|
90 |
|
|
|
91 |
|
|
|
92 |
The C variable which corresponds to Perl's $^W warning |
|
|
93 |
variable. |
|
|
94 |
|
|
|
95 |
|
|
|
96 |
bool PL_dowarn |
|
|
97 |
|
|
|
98 |
|
|
|
99 |
PL_last_in_gv |
|
|
100 |
|
|
|
101 |
|
|
|
102 |
The GV which was last used for a filehandle |
|
|
103 |
input operation. () |
|
|
104 |
|
|
|
105 |
|
|
|
106 |
GV* PL_last_in_gv |
|
|
107 |
|
|
|
108 |
|
|
|
109 |
PL_ofs_sv |
|
|
110 |
|
|
|
111 |
|
|
|
112 |
The output field separator - $, in Perl |
|
|
113 |
space. |
|
|
114 |
|
|
|
115 |
|
|
|
116 |
SV* PL_ofs_sv |
|
|
117 |
|
|
|
118 |
|
|
|
119 |
PL_rs |
|
|
120 |
|
|
|
121 |
|
|
|
122 |
The input record separator - $/ in Perl |
|
|
123 |
space. |
|
|
124 |
|
|
|
125 |
|
|
|
126 |
SV* PL_rs |
|
|
127 |
!!AUTHORS |
|
|
128 |
|
|
|
129 |
|
|
|
130 |
The autodocumentation system was originally added to the |
|
|
131 |
Perl core by Benjamin Stuhl. Documentation is by whoever was |
|
|
132 |
kind enough to document their functions. |
|
|
133 |
!!SEE ALSO |
|
|
134 |
|
|
|
135 |
|
|
|
136 |
perlguts(1), perlapi(1) |
|
|
137 |
---- |