This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
MakeMaker should not remove editor backups (*~) on `make clean`
[perl5.git] / intrpvar.h
CommitLineData
49f531da
NIS
1/***********************************************/
2/* Global only to current interpreter instance */
3/***********************************************/
4
cb68f92d
GS
5/* Don't forget to re-run embed.pl to propagate changes! */
6
7/* The 'I' prefix is only needed for vars that need appropriate #defines
8 * generated when built with or without MULTIPLICITY. It is also used
9 * to generate the appropriate export list for win32.
10 *
14dd3ad8 11 * When building without MULTIPLICITY, these variables will be truly global. */
cb68f92d 12
49f531da 13/* pseudo environmental stuff */
cb68f92d
GS
14PERLVAR(Iorigargc, int)
15PERLVAR(Iorigargv, char **)
16PERLVAR(Ienvgv, GV *)
cb68f92d 17PERLVAR(Iincgv, GV *)
b3ac6de7 18PERLVAR(Ihintgv, GV *)
cb68f92d
GS
19PERLVAR(Iorigfilename, char *)
20PERLVAR(Idiehook, SV *)
21PERLVAR(Iwarnhook, SV *)
1d7c1841
GS
22
23/* switches */
cb68f92d 24PERLVAR(Iminus_c, bool)
a7cb1f99 25PERLVAR(Ipatchlevel, SV *)
cb68f92d
GS
26PERLVAR(Ilocalpatches, char **)
27PERLVARI(Isplitstr, char *, " ")
28PERLVAR(Ipreprocess, bool)
29PERLVAR(Iminus_n, bool)
30PERLVAR(Iminus_p, bool)
31PERLVAR(Iminus_l, bool)
32PERLVAR(Iminus_a, bool)
33PERLVAR(Iminus_F, bool)
34PERLVAR(Idoswitches, bool)
954c1994
GS
35
36/*
37=for apidoc Amn|bool|PL_dowarn
38
39The C variable which corresponds to Perl's $^W warning variable.
40
41=cut
42*/
43
d41ff1b8 44PERLVAR(Idowarn, U8)
46487f74 45PERLVAR(Iwidesyscalls, bool) /* wide system calls */
cb68f92d 46PERLVAR(Idoextract, bool)
49f531da 47PERLVAR(Isawampersand, bool) /* must save all match strings */
cb68f92d
GS
48PERLVAR(Iunsafe, bool)
49PERLVAR(Iinplace, char *)
50PERLVAR(Ie_script, SV *)
51PERLVAR(Iperldb, U32)
d4cce5f1 52
1d7c1841 53/* This value may be set when embedding for full cleanup */
d4cce5f1 54/* 0=none, 1=full, 2=full with checks */
cb68f92d 55PERLVARI(Iperl_destruct_level, int, 0)
49f531da
NIS
56
57/* magical thingies */
58PERLVAR(Ibasetime, Time_t) /* $^T */
59PERLVAR(Iformfeed, SV *) /* $^L */
d4cce5f1
NIS
60
61
cb68f92d
GS
62PERLVARI(Imaxsysfd, I32, MAXSYSFD)
63 /* top fd to pass to subprocesses */
49f531da
NIS
64PERLVAR(Imultiline, int) /* $*--do strings hold >1 line? */
65PERLVAR(Istatusvalue, I32) /* $? */
1d7c1841 66PERLVAR(Iexit_flags, U8) /* was exit() unexpected, etc. */
49f531da 67#ifdef VMS
cb68f92d 68PERLVAR(Istatusvalue_vms,U32)
49f531da
NIS
69#endif
70
49f531da 71/* shortcuts to various I/O objects */
cb68f92d 72PERLVAR(Istdingv, GV *)
bf49b057 73PERLVAR(Istderrgv, GV *)
cb68f92d
GS
74PERLVAR(Idefgv, GV *)
75PERLVAR(Iargvgv, GV *)
76PERLVAR(Iargvoutgv, GV *)
1d7c1841 77PERLVAR(Iargvout_stack, AV *)
49f531da
NIS
78
79/* shortcuts to regexp stuff */
5c0ca799
GS
80/* this one needs to be moved to thrdvar.h and accessed via
81 * find_threadsv() when USE_THREADS */
cb68f92d 82PERLVAR(Ireplgv, GV *)
49f531da
NIS
83
84/* shortcuts to misc objects */
cb68f92d 85PERLVAR(Ierrgv, GV *)
49f531da
NIS
86
87/* shortcuts to debugging objects */
cb68f92d
GS
88PERLVAR(IDBgv, GV *)
89PERLVAR(IDBline, GV *)
954c1994
GS
90
91/*
92=for apidoc Amn|GV *|PL_DBsub
93When Perl is run in debugging mode, with the B<-d> switch, this GV contains
94the SV which holds the name of the sub being debugged. This is the C
95variable which corresponds to Perl's $DB::sub variable. See
96C<PL_DBsingle>.
97
98=for apidoc Amn|SV *|PL_DBsingle
99When Perl is run in debugging mode, with the B<-d> switch, this SV is a
100boolean which indicates whether subs are being single-stepped.
101Single-stepping is automatically turned on after every step. This is the C
102variable which corresponds to Perl's $DB::single variable. See
103C<PL_DBsub>.
104
105=for apidoc Amn|SV *|PL_DBtrace
106Trace variable used when Perl is run in debugging mode, with the B<-d>
107switch. This is the C variable which corresponds to Perl's $DB::trace
108variable. See C<PL_DBsingle>.
109
110=cut
111*/
112
cb68f92d
GS
113PERLVAR(IDBsub, GV *)
114PERLVAR(IDBsingle, SV *)
115PERLVAR(IDBtrace, SV *)
116PERLVAR(IDBsignal, SV *)
49f531da
NIS
117PERLVAR(Ilineary, AV *) /* lines of script for debugger */
118PERLVAR(Idbargs, AV *) /* args to call listed by caller function */
119
120/* symbol tables */
49f531da
NIS
121PERLVAR(Idebstash, HV *) /* symbol table for perldb package */
122PERLVAR(Iglobalstash, HV *) /* global keyword overrides imported here */
123PERLVAR(Icurstname, SV *) /* name of current package */
124PERLVAR(Ibeginav, AV *) /* names of BEGIN subroutines */
d4cce5f1 125PERLVAR(Iendav, AV *) /* names of END subroutines */
7d30b5c4 126PERLVAR(Icheckav, AV *) /* names of CHECK subroutines */
49f531da
NIS
127PERLVAR(Iinitav, AV *) /* names of INIT subroutines */
128PERLVAR(Istrtab, HV *) /* shared string table */
005a453c 129PERLVARI(Isub_generation,U32,1) /* incr to invalidate method cache */
49f531da
NIS
130
131/* memory management */
49f531da
NIS
132PERLVAR(Isv_count, I32) /* how many SV* are currently allocated */
133PERLVAR(Isv_objcount, I32) /* how many objects are currently allocated */
134PERLVAR(Isv_root, SV*) /* storage for SVs belonging to interp */
135PERLVAR(Isv_arenaroot, SV*) /* list of areas for garbage collection */
136
137/* funky return mechanisms */
49f531da
NIS
138PERLVAR(Iforkprocess, int) /* so do_open |- can return proc# */
139
140/* subprocess state */
d4cce5f1 141PERLVAR(Ifdpid, AV *) /* keep fd-to-pid mappings for my_popen */
49f531da 142
3d35f11b
GS
143#ifdef USE_THREADS
144PERLVAR(Ifdpid_mutex, perl_mutex) /* mutex for fdpid array */
145#endif
146
49f531da 147/* internal state */
49f531da
NIS
148PERLVAR(Itainting, bool) /* doing taint checks */
149PERLVARI(Iop_mask, char *, NULL) /* masked operations for safe evals */
150
49f531da 151/* current interpreter roots */
cb68f92d
GS
152PERLVAR(Imain_cv, CV *)
153PERLVAR(Imain_root, OP *)
154PERLVAR(Imain_start, OP *)
155PERLVAR(Ieval_root, OP *)
156PERLVAR(Ieval_start, OP *)
49f531da
NIS
157
158/* runtime control stuff */
cb68f92d
GS
159PERLVARI(Icurcopdb, COP *, NULL)
160PERLVARI(Icopline, line_t, NOLINE)
49f531da
NIS
161
162/* statics moved here for shared library purposes */
49f531da
NIS
163PERLVAR(Ifilemode, int) /* so nextargv() can preserve mode */
164PERLVAR(Ilastfd, int) /* what to preserve mode on */
165PERLVAR(Ioldname, char *) /* what to preserve mode on */
d4cce5f1
NIS
166PERLVAR(IArgv, char **) /* stuff to free from do_aexec, vfork safe */
167PERLVAR(ICmd, char *) /* stuff to free from do_aexec, vfork safe */
49f531da 168PERLVAR(Igensym, I32) /* next symbol for getsym() to define */
cb68f92d
GS
169PERLVAR(Ipreambled, bool)
170PERLVAR(Ipreambleav, AV *)
171PERLVARI(Ilaststatval, int, -1)
172PERLVARI(Ilaststype, I32, OP_STAT)
173PERLVAR(Imess_sv, SV *)
49f531da 174
cb68f92d
GS
175/* XXX shouldn't these be per-thread? --GSAR */
176PERLVAR(Iors, char *) /* output record separator $\ */
177PERLVAR(Iorslen, STRLEN)
178PERLVAR(Iofmt, char *) /* output format for numbers $# */
d4cce5f1 179
4b556e6c 180/* interpreter atexit processing */
cb68f92d
GS
181PERLVARI(Iexitlist, PerlExitListEntry *, NULL)
182 /* list of exit functions */
183PERLVARI(Iexitlistlen, I32, 0) /* length of same */
954c1994
GS
184
185/*
186=for apidoc Amn|HV*|PL_modglobal
187
188C<PL_modglobal> is a general purpose, interpreter global HV for use by
189extensions that need to keep information on a per-interpreter basis.
190In a pinch, it can also be used as a symbol table for extensions
191to share data among each other. It is a good idea to use keys
192prefixed by the package name of the extension that owns the data.
193
194=cut
195*/
196
cb68f92d
GS
197PERLVAR(Imodglobal, HV *) /* per-interp module data */
198
199/* these used to be in global before 5.004_68 */
200PERLVARI(Iprofiledata, U32 *, NULL) /* table of ops, counts */
201PERLVARI(Irsfp, PerlIO * VOL, Nullfp) /* current source file pointer */
202PERLVARI(Irsfp_filters, AV *, Nullav) /* keeps active source filters */
203
204PERLVAR(Icompiling, COP) /* compiling/done executing marker */
205
206PERLVAR(Icompcv, CV *) /* currently compiling subroutine */
207PERLVAR(Icomppad, AV *) /* storage for lexically scoped temporaries */
208PERLVAR(Icomppad_name, AV *) /* variable names for "my" variables */
209PERLVAR(Icomppad_name_fill, I32) /* last "introduced" variable offset */
210PERLVAR(Icomppad_name_floor, I32) /* start of vars in innermost block */
4b556e6c
JD
211
212#ifdef HAVE_INTERP_INTERN
cb68f92d
GS
213PERLVAR(Isys_intern, struct interp_intern)
214 /* platform internals */
4b556e6c
JD
215#endif
216
7fae4e64 217/* more statics moved here */
7fae4e64
GS
218PERLVARI(Igeneration, int, 100) /* from op.c */
219PERLVAR(IDBcv, CV *) /* from perl.c */
56953603 220
cb68f92d
GS
221PERLVARI(Iin_clean_objs,bool, FALSE) /* from sv.c */
222PERLVARI(Iin_clean_all, bool, FALSE) /* from sv.c */
7fae4e64
GS
223
224PERLVAR(Ilinestart, char *) /* beg. of most recently read line */
225PERLVAR(Ipending_ident, char) /* pending identifier lookup */
226PERLVAR(Isublex_info, SUBLEXINFO) /* from toke.c */
227
49f531da 228#ifdef USE_THREADS
cb68f92d 229PERLVAR(Ithrsv, SV *) /* struct perl_thread for main thread */
940cb80d 230PERLVARI(Ithreadnum, U32, 0) /* incremented each thread creation */
5f08fbcd 231PERLVAR(Istrtab_mutex, perl_mutex) /* Mutex for string table access */
49f531da 232#endif /* USE_THREADS */
76e3520e 233
d8eceb89
JH
234PERLVAR(Iuid, Uid_t) /* current real user id */
235PERLVAR(Ieuid, Uid_t) /* current effective user id */
236PERLVAR(Igid, Gid_t) /* current real group id */
237PERLVAR(Iegid, Gid_t) /* current effective group id */
0672f40e
GS
238PERLVAR(Inomemok, bool) /* let malloc context handle nomem */
239PERLVAR(Ian, U32) /* malloc sequence number */
240PERLVAR(Icop_seqmax, U32) /* statement sequence number */
241PERLVAR(Iop_seqmax, U16) /* op sequence number */
242PERLVAR(Ievalseq, U32) /* eval sequence number */
243PERLVAR(Iorigenviron, char **)
244PERLVAR(Iorigalen, U32)
245PERLVAR(Ipidstatus, HV *) /* pid-to-status mappings for waitpid */
246PERLVARI(Imaxo, int, MAXO) /* maximum number of ops */
247PERLVAR(Iosname, char *) /* operating system */
248PERLVARI(Ish_path, char *, SH_PATH)/* full path of shell */
249PERLVAR(Isighandlerp, Sighandler_t)
250
251PERLVAR(Ixiv_arenaroot, XPV*) /* list of allocated xiv areas */
612f20c3
GS
252PERLVAR(Ixiv_root, IV *) /* free xiv list */
253PERLVAR(Ixnv_arenaroot, XPV*) /* list of allocated xnv areas */
254PERLVAR(Ixnv_root, NV *) /* free xnv list */
255PERLVAR(Ixrv_arenaroot, XPV*) /* list of allocated xrv areas */
256PERLVAR(Ixrv_root, XRV *) /* free xrv list */
257PERLVAR(Ixpv_arenaroot, XPV*) /* list of allocated xpv areas */
258PERLVAR(Ixpv_root, XPV *) /* free xpv list */
259PERLVAR(Ixpviv_arenaroot,XPVIV*) /* list of allocated xpviv areas */
260PERLVAR(Ixpviv_root, XPVIV *) /* free xpviv list */
261PERLVAR(Ixpvnv_arenaroot,XPVNV*) /* list of allocated xpvnv areas */
262PERLVAR(Ixpvnv_root, XPVNV *) /* free xpvnv list */
263PERLVAR(Ixpvcv_arenaroot,XPVCV*) /* list of allocated xpvcv areas */
264PERLVAR(Ixpvcv_root, XPVCV *) /* free xpvcv list */
265PERLVAR(Ixpvav_arenaroot,XPVAV*) /* list of allocated xpvav areas */
266PERLVAR(Ixpvav_root, XPVAV *) /* free xpvav list */
267PERLVAR(Ixpvhv_arenaroot,XPVHV*) /* list of allocated xpvhv areas */
268PERLVAR(Ixpvhv_root, XPVHV *) /* free xpvhv list */
269PERLVAR(Ixpvmg_arenaroot,XPVMG*) /* list of allocated xpvmg areas */
270PERLVAR(Ixpvmg_root, XPVMG *) /* free xpvmg list */
271PERLVAR(Ixpvlv_arenaroot,XPVLV*) /* list of allocated xpvlv areas */
272PERLVAR(Ixpvlv_root, XPVLV *) /* free xpvlv list */
273PERLVAR(Ixpvbm_arenaroot,XPVBM*) /* list of allocated xpvbm areas */
274PERLVAR(Ixpvbm_root, XPVBM *) /* free xpvbm list */
275PERLVAR(Ihe_arenaroot, XPV*) /* list of allocated he areas */
276PERLVAR(Ihe_root, HE *) /* free he list */
0672f40e
GS
277PERLVAR(Inice_chunk, char *) /* a nice chunk of memory to reuse */
278PERLVAR(Inice_chunk_size, U32) /* how nice the chunk of memory is */
279
0b94c7bb 280PERLVARI(Irunops, runops_proc_t, MEMBER_TO_FPTR(RUNOPS_DEFAULT))
0672f40e 281
51371543 282PERLVARA(Itokenbuf,256, char)
0672f40e 283
954c1994
GS
284/*
285=for apidoc Amn|SV|PL_sv_undef
286This is the C<undef> SV. Always refer to this as C<&PL_sv_undef>.
287
288=for apidoc Amn|SV|PL_sv_no
289This is the C<false> SV. See C<PL_sv_yes>. Always refer to this as
290C<&PL_sv_no>.
291
292=for apidoc Amn|SV|PL_sv_yes
293This is the C<true> SV. See C<PL_sv_no>. Always refer to this as
294C<&PL_sv_yes>.
295
296=cut
297*/
298
0672f40e
GS
299PERLVAR(Isv_undef, SV)
300PERLVAR(Isv_no, SV)
301PERLVAR(Isv_yes, SV)
302
303#ifdef CSH
304PERLVARI(Icshname, char *, CSH)
305PERLVAR(Icshlen, I32)
306#endif
307
308PERLVAR(Ilex_state, U32) /* next token is determined */
309PERLVAR(Ilex_defer, U32) /* state after determined token */
1d7c1841 310PERLVAR(Ilex_expect, int) /* expect after determined token */
0672f40e
GS
311PERLVAR(Ilex_brackets, I32) /* bracket count */
312PERLVAR(Ilex_formbrack, I32) /* bracket count at outer format level */
0672f40e
GS
313PERLVAR(Ilex_casemods, I32) /* casemod count */
314PERLVAR(Ilex_dojoin, I32) /* doing an array interpolation */
315PERLVAR(Ilex_starts, I32) /* how many interps done on level */
316PERLVAR(Ilex_stuff, SV *) /* runtime pattern from m// or s/// */
317PERLVAR(Ilex_repl, SV *) /* runtime replacement from s/// */
318PERLVAR(Ilex_op, OP *) /* extra info to pass back on op */
319PERLVAR(Ilex_inpat, OP *) /* in pattern $) and $| are special */
320PERLVAR(Ilex_inwhat, I32) /* what kind of quoting are we in */
321PERLVAR(Ilex_brackstack,char *) /* what kind of brackets to pop */
322PERLVAR(Ilex_casestack, char *) /* what kind of case mods in effect */
323
324/* What we know when we're in LEX_KNOWNEXT state. */
51371543
GS
325PERLVARA(Inextval,5, YYSTYPE) /* value of next token, if any */
326PERLVARA(Inexttype,5, I32) /* type of next token */
0672f40e
GS
327PERLVAR(Inexttoke, I32)
328
329PERLVAR(Ilinestr, SV *)
330PERLVAR(Ibufptr, char *)
331PERLVAR(Ioldbufptr, char *)
332PERLVAR(Ioldoldbufptr, char *)
333PERLVAR(Ibufend, char *)
1d7c1841 334PERLVARI(Iexpect,int, XSTATE) /* how to interpret ambiguous tokens */
0672f40e
GS
335
336PERLVAR(Imulti_start, I32) /* 1st line of multi-line string */
337PERLVAR(Imulti_end, I32) /* last line of multi-line string */
338PERLVAR(Imulti_open, I32) /* delimiter of said string */
339PERLVAR(Imulti_close, I32) /* delimiter of said string */
340
341PERLVAR(Ierror_count, I32) /* how many errors so far, max 10 */
342PERLVAR(Isubline, I32) /* line this subroutine began on */
343PERLVAR(Isubname, SV *) /* name of current subroutine */
344
345PERLVAR(Imin_intro_pending, I32) /* start of vars to introduce */
346PERLVAR(Imax_intro_pending, I32) /* end of vars to introduce */
347PERLVAR(Ipadix, I32) /* max used index in current "register" pad */
348PERLVAR(Ipadix_floor, I32) /* how low may inner block reset padix */
349PERLVAR(Ipad_reset_pending, I32) /* reset pad on next attempted alloc */
350
0672f40e
GS
351PERLVAR(Ilast_uni, char *) /* position of last named-unary op */
352PERLVAR(Ilast_lop, char *) /* position of last list operator */
353PERLVAR(Ilast_lop_op, OPCODE) /* last list operator */
77ca0c92 354PERLVAR(Iin_my, I32) /* we're compiling a "my" (or "our") declaration */
0672f40e
GS
355PERLVAR(Iin_my_stash, HV *) /* declared class of this "my" declaration */
356#ifdef FCRYPT
1d7c1841 357PERLVAR(Icryptseen, bool) /* has fast crypt() been initialized? */
0672f40e
GS
358#endif
359
1d7c1841 360PERLVAR(Ihints, U32) /* pragma-tic compile-time flags */
0672f40e
GS
361
362PERLVAR(Idebug, VOL U32) /* flags given to -D switch */
363
364PERLVAR(Iamagic_generation, long)
365
366#ifdef USE_LOCALE_COLLATE
367PERLVAR(Icollation_ix, U32) /* Collation generation index */
368PERLVAR(Icollation_name,char *) /* Name of current collation */
369PERLVARI(Icollation_standard, bool, TRUE)
370 /* Assume simple collation */
371PERLVAR(Icollxfrm_base, Size_t) /* Basic overhead in *xfrm() */
372PERLVARI(Icollxfrm_mult,Size_t, 2) /* Expansion factor in *xfrm() */
373#endif /* USE_LOCALE_COLLATE */
374
375#ifdef USE_LOCALE_NUMERIC
376
377PERLVAR(Inumeric_name, char *) /* Name of current numeric locale */
378PERLVARI(Inumeric_standard, bool, TRUE)
379 /* Assume simple numerics */
380PERLVARI(Inumeric_local, bool, TRUE)
381 /* Assume local numerics */
097ee67d
JH
382PERLVAR(Inumeric_radix, char)
383 /* The radix character if not '.' */
0672f40e
GS
384
385#endif /* !USE_LOCALE_NUMERIC */
386
387/* utf8 character classes */
388PERLVAR(Iutf8_alnum, SV *)
b8c5462f
JH
389PERLVAR(Iutf8_alnumc, SV *)
390PERLVAR(Iutf8_ascii, SV *)
0672f40e
GS
391PERLVAR(Iutf8_alpha, SV *)
392PERLVAR(Iutf8_space, SV *)
b8c5462f
JH
393PERLVAR(Iutf8_cntrl, SV *)
394PERLVAR(Iutf8_graph, SV *)
0672f40e
GS
395PERLVAR(Iutf8_digit, SV *)
396PERLVAR(Iutf8_upper, SV *)
397PERLVAR(Iutf8_lower, SV *)
398PERLVAR(Iutf8_print, SV *)
b8c5462f
JH
399PERLVAR(Iutf8_punct, SV *)
400PERLVAR(Iutf8_xdigit, SV *)
0672f40e
GS
401PERLVAR(Iutf8_mark, SV *)
402PERLVAR(Iutf8_toupper, SV *)
403PERLVAR(Iutf8_totitle, SV *)
404PERLVAR(Iutf8_tolower, SV *)
405PERLVAR(Ilast_swash_hv, HV *)
406PERLVAR(Ilast_swash_klen, U32)
51371543 407PERLVARA(Ilast_swash_key,10, U8)
0672f40e
GS
408PERLVAR(Ilast_swash_tmps, U8 *)
409PERLVAR(Ilast_swash_slen, STRLEN)
410
411/* perly.c globals */
412PERLVAR(Iyydebug, int)
413PERLVAR(Iyynerrs, int)
414PERLVAR(Iyyerrflag, int)
415PERLVAR(Iyychar, int)
416PERLVAR(Iyyval, YYSTYPE)
417PERLVAR(Iyylval, YYSTYPE)
418
419PERLVAR(Iglob_index, int)
0672f40e 420PERLVAR(Isrand_called, bool)
51371543 421PERLVARA(Iuudmap,256, char)
0672f40e 422PERLVAR(Ibitcount, char *)
0672f40e 423
43165c05 424#ifdef USE_THREADS
43165c05 425PERLVAR(Isv_mutex, perl_mutex) /* Mutex for allocating SVs in sv.c */
43165c05
GS
426PERLVAR(Ieval_mutex, perl_mutex) /* Mutex for doeval */
427PERLVAR(Ieval_cond, perl_cond) /* Condition variable for doeval */
428PERLVAR(Ieval_owner, struct perl_thread *)
429 /* Owner thread for doeval */
430PERLVAR(Inthreads, int) /* Number of threads currently */
431PERLVAR(Ithreads_mutex, perl_mutex) /* Mutex for nthreads and thread list */
432PERLVAR(Inthreads_cond, perl_cond) /* Condition variable for nthreads */
433PERLVAR(Isvref_mutex, perl_mutex) /* Mutex for SvREFCNT_{inc,dec} */
434PERLVARI(Ithreadsv_names,char *, THREADSV_NAMES)
435#ifdef FAKE_THREADS
436PERLVAR(Icurthr, struct perl_thread *)
437 /* Currently executing (fake) thread */
438#endif
439
440PERLVAR(Icred_mutex, perl_mutex) /* altered credentials in effect */
441
442#endif /* USE_THREADS */
443
1d7c1841
GS
444PERLVAR(Ipsig_ptr, SV**)
445PERLVAR(Ipsig_name, SV**)
446
c5be433b 447#if defined(PERL_IMPLICIT_SYS)
32e30700 448PERLVAR(IMem, struct IPerlMem*)
1d7c1841
GS
449PERLVAR(IMemShared, struct IPerlMem*)
450PERLVAR(IMemParse, struct IPerlMem*)
32e30700
GS
451PERLVAR(IEnv, struct IPerlEnv*)
452PERLVAR(IStdIO, struct IPerlStdIO*)
453PERLVAR(ILIO, struct IPerlLIO*)
454PERLVAR(IDir, struct IPerlDir*)
455PERLVAR(ISock, struct IPerlSock*)
456PERLVAR(IProc, struct IPerlProc*)
76e3520e 457#endif
1d7c1841
GS
458
459#if defined(USE_ITHREADS)
460PERLVAR(Iptr_table, PTR_TBL_t*)
461#endif
f180df80 462
3d35f11b
GS
463#if defined(USE_THREADS)
464PERLVAR(Isv_lock_mutex, perl_mutex) /* Mutex for SvLOCK macro */
465#endif
466
f180df80 467PERLVAR(Inullstash, HV *) /* illegal symbols end up here */