Major *try* cleanup: introduce $rm_try; Some whitespace cleanups;
[p5sagit/p5-mst-13.2.git] / intrpvar.h
1 /***********************************************/
2 /* Global only to current interpreter instance */
3 /***********************************************/
4
5 /* Don't forget to re-run embed.pl to propagate changes! */
6
7 /* New variables must be added to the very end for binary compatibility.
8  * XSUB.h provides wrapper functions via perlapi.h that make this
9  * irrelevant, but not all code may be expected to #include XSUB.h. */
10
11 /* Don't forget to add your variable also to perl_clone()! */
12
13 /* The 'I' prefix is only needed for vars that need appropriate #defines
14  * generated when built with or without MULTIPLICITY.  It is also used
15  * to generate the appropriate export list for win32.
16  *
17  * When building without MULTIPLICITY, these variables will be truly global. */
18
19
20 /* For historical reasons this file follows thrdvar.h into the interpeter
21    struct, and that file currently ends with 7 bytes of variables, so putting
22    one last byte here is good for alignment.  */
23
24 /* This value may be set when embedding for full cleanup  */
25 /* 0=none, 1=full, 2=full with checks */
26 PERLVARI(Iperl_destruct_level,  U8,     0)
27
28 PERLVAR(Iperldb,        U32)
29
30 /* pseudo environmental stuff */
31 PERLVAR(Iorigargc,      int)
32 PERLVAR(Iorigargv,      char **)
33 PERLVAR(Ienvgv,         GV *)
34 PERLVAR(Iincgv,         GV *)
35 PERLVAR(Ihintgv,        GV *)
36 PERLVAR(Iorigfilename,  char *)
37 PERLVAR(Idiehook,       SV *)
38 PERLVAR(Iwarnhook,      SV *)
39
40 /* switches */
41 PERLVAR(Ipatchlevel,    SV *)
42 PERLVAR(Ilocalpatches,  const char * const *)
43 PERLVARI(Isplitstr,     const char *, " ")
44
45 PERLVAR(Iminus_c,       bool)
46 PERLVAR(Ipreprocess,    bool)
47 PERLVAR(Iminus_n,       bool)
48 PERLVAR(Iminus_p,       bool)
49 PERLVAR(Iminus_l,       bool)
50 PERLVAR(Iminus_a,       bool)
51 PERLVAR(Iminus_F,       bool)
52 PERLVAR(Idoswitches,    bool)
53
54 PERLVAR(Iminus_E,       bool)
55
56 /*
57 =head1 Global Variables
58
59 =for apidoc mn|bool|PL_dowarn
60
61 The C variable which corresponds to Perl's $^W warning variable.
62
63 =cut
64 */
65
66 PERLVAR(Idowarn,        U8)
67 PERLVAR(Idoextract,     bool)
68 PERLVAR(Isawampersand,  bool)           /* must save all match strings */
69 PERLVAR(Iunsafe,        bool)
70 PERLVAR(Iexit_flags,    U8)             /* was exit() unexpected, etc. */
71 PERLVAR(Isrand_called,  bool)
72 /* Part of internal state, but makes the 16th 1 byte variable in a row.  */
73 PERLVAR(Itainting,      bool)           /* doing taint checks */
74 PERLVAR(Iinplace,       char *)
75 PERLVAR(Ie_script,      SV *)
76
77 /* magical thingies */
78 PERLVAR(Ibasetime,      Time_t)         /* $^T */
79 PERLVAR(Iformfeed,      SV *)           /* $^L */
80
81
82 PERLVARI(Imaxsysfd,     I32,    MAXSYSFD)
83                                         /* top fd to pass to subprocesses */
84 PERLVAR(Istatusvalue,   I32)            /* $? */
85 #ifdef VMS
86 PERLVAR(Istatusvalue_vms,U32)
87 #else
88 PERLVAR(Istatusvalue_posix,I32)
89 #endif
90
91 #ifdef CSH
92 PERLVARI(Icshlen,       I32,    0)
93 PERLVARI(Icshname,      const char *,   CSH)
94 #endif
95
96 /* shortcuts to various I/O objects */
97 PERLVAR(Istdingv,       GV *)
98 PERLVAR(Istderrgv,      GV *)
99 PERLVAR(Idefgv,         GV *)
100 PERLVAR(Iargvgv,        GV *)
101 PERLVAR(Iargvoutgv,     GV *)
102 PERLVAR(Iargvout_stack, AV *)
103
104 /* shortcuts to regexp stuff */
105 /* this one needs to be moved to thrdvar.h and accessed via
106  * find_threadsv() when USE_5005THREADS */
107 PERLVAR(Ireplgv,        GV *)
108
109 /* shortcuts to misc objects */
110 PERLVAR(Ierrgv,         GV *)
111
112 /* shortcuts to debugging objects */
113 PERLVAR(IDBgv,          GV *)
114 PERLVAR(IDBline,        GV *)
115
116 /*
117 =for apidoc mn|GV *|PL_DBsub
118 When Perl is run in debugging mode, with the B<-d> switch, this GV contains
119 the SV which holds the name of the sub being debugged.  This is the C
120 variable which corresponds to Perl's $DB::sub variable.  See
121 C<PL_DBsingle>.
122
123 =for apidoc mn|SV *|PL_DBsingle
124 When Perl is run in debugging mode, with the B<-d> switch, this SV is a
125 boolean which indicates whether subs are being single-stepped.
126 Single-stepping is automatically turned on after every step.  This is the C
127 variable which corresponds to Perl's $DB::single variable.  See
128 C<PL_DBsub>.
129
130 =for apidoc mn|SV *|PL_DBtrace
131 Trace variable used when Perl is run in debugging mode, with the B<-d>
132 switch.  This is the C variable which corresponds to Perl's $DB::trace
133 variable.  See C<PL_DBsingle>.
134
135 =cut
136 */
137
138 PERLVAR(IDBsub,         GV *)
139 PERLVAR(IDBsingle,      SV *)
140 PERLVAR(IDBtrace,       SV *)
141 PERLVAR(IDBsignal,      SV *)
142 PERLVAR(Ilineary,       AV *)           /* lines of script for debugger */
143 PERLVAR(Idbargs,        AV *)           /* args to call listed by caller function */
144
145 /* symbol tables */
146 PERLVAR(Idebstash,      HV *)           /* symbol table for perldb package */
147 PERLVAR(Iglobalstash,   HV *)           /* global keyword overrides imported here */
148 PERLVAR(Icurstname,     SV *)           /* name of current package */
149 PERLVAR(Ibeginav,       AV *)           /* names of BEGIN subroutines */
150 PERLVAR(Iendav,         AV *)           /* names of END subroutines */
151 PERLVAR(Iunitcheckav,   AV *)           /* names of UNITCHECK subroutines */
152 PERLVAR(Icheckav,       AV *)           /* names of CHECK subroutines */
153 PERLVAR(Iinitav,        AV *)           /* names of INIT subroutines */
154 PERLVAR(Istrtab,        HV *)           /* shared string table */
155 PERLVARI(Isub_generation,U32,1)         /* incr to invalidate method cache */
156
157 /* funky return mechanisms */
158 PERLVAR(Iforkprocess,   int)            /* so do_open |- can return proc# */
159
160 /* memory management */
161 PERLVAR(Isv_count,      I32)            /* how many SV* are currently allocated */
162 PERLVAR(Isv_objcount,   I32)            /* how many objects are currently allocated */
163 PERLVAR(Isv_root,       SV*)            /* storage for SVs belonging to interp */
164 PERLVAR(Isv_arenaroot,  SV*)            /* list of areas for garbage collection */
165
166 /* subprocess state */
167 PERLVAR(Ifdpid,         AV *)           /* keep fd-to-pid mappings for my_popen */
168
169 /* internal state */
170 PERLVARI(Iop_mask,      char *, NULL)   /* masked operations for safe evals */
171
172 /* current interpreter roots */
173 PERLVAR(Imain_cv,       CV *)
174 PERLVAR(Imain_root,     OP *)
175 PERLVAR(Imain_start,    OP *)
176 PERLVAR(Ieval_root,     OP *)
177 PERLVAR(Ieval_start,    OP *)
178
179 /* runtime control stuff */
180 PERLVARI(Icurcopdb,     COP *,  NULL)
181 PERLVARI(Icopline,      line_t, NOLINE)
182
183 /* statics moved here for shared library purposes */
184 PERLVARI(Igensym,       I32,    0)      /* next symbol for getsym() to define */
185 PERLVAR(Ifilemode,      int)            /* so nextargv() can preserve mode */
186 PERLVAR(Ilastfd,        int)            /* what to preserve mode on */
187 PERLVAR(Ioldname,       char *)         /* what to preserve mode on */
188 PERLVAR(IArgv,          char **)        /* stuff to free from do_aexec, vfork safe */
189 PERLVAR(ICmd,           char *)         /* stuff to free from do_aexec, vfork safe */
190 PERLVAR(Ipreambleav,    AV *)
191 PERLVAR(Imess_sv,       SV *)
192 PERLVAR(Iors_sv,        SV *)           /* output record separator $\ */
193      /* Space for one more U16 here without increasing the structure size */
194 PERLVAR(Ilast_lop_op,   OPCODE)         /* last list operator */
195 PERLVAR(Iin_my,         U16)            /* we're compiling a "my" (or "our") declaration */
196 PERLVARI(Ilaststype,    U16,    OP_STAT)
197 PERLVARI(Ilaststatval,  int,    -1)
198
199 /* interpreter atexit processing */
200 PERLVARI(Iexitlistlen,  I32, 0)         /* length of same */
201 PERLVARI(Iexitlist,     PerlExitListEntry *, NULL)
202                                         /* list of exit functions */
203
204 /*
205 =for apidoc Amn|HV*|PL_modglobal
206
207 C<PL_modglobal> is a general purpose, interpreter global HV for use by
208 extensions that need to keep information on a per-interpreter basis.
209 In a pinch, it can also be used as a symbol table for extensions
210 to share data among each other.  It is a good idea to use keys
211 prefixed by the package name of the extension that owns the data.
212
213 =cut
214 */
215
216 PERLVAR(Imodglobal,     HV *)           /* per-interp module data */
217
218 /* these used to be in global before 5.004_68 */
219 PERLVARI(Iprofiledata,  U32 *,  NULL)   /* table of ops, counts */
220 PERLVARI(Irsfp, PerlIO * VOL,   NULL)   /* current source file pointer */
221 PERLVARI(Irsfp_filters, AV *,   NULL)   /* keeps active source filters */
222
223 PERLVAR(Icompiling,     COP)            /* compiling/done executing marker */
224
225 PERLVAR(Icompcv,        CV *)           /* currently compiling subroutine */
226 PERLVAR(Icomppad,       AV *)           /* storage for lexically scoped temporaries */
227 PERLVAR(Icomppad_name,  AV *)           /* variable names for "my" variables */
228 PERLVAR(Icomppad_name_fill,     I32)    /* last "introduced" variable offset */
229 PERLVAR(Icomppad_name_floor,    I32)    /* start of vars in innermost block */
230
231 #ifdef HAVE_INTERP_INTERN
232 PERLVAR(Isys_intern,    struct interp_intern)
233                                         /* platform internals */
234 #endif
235
236 /* more statics moved here */
237 PERLVAR(IDBcv,          CV *)           /* from perl.c */
238 PERLVARI(Igeneration,   int,    100)    /* from op.c */
239
240 PERLVARI(Iin_clean_objs,bool,    FALSE) /* from sv.c */
241 PERLVARI(Iin_clean_all, bool,    FALSE) /* from sv.c */
242 PERLVAR(Inomemok,       bool)           /* let malloc context handle nomem */
243 PERLVARI(Isavebegin,     bool,  FALSE)  /* save BEGINs for compiler     */
244
245 PERLVAR(Ilinestart,     char *)         /* beg. of most recently read line */
246
247 PERLVAR(Iuid,           Uid_t)          /* current real user id */
248 PERLVAR(Ieuid,          Uid_t)          /* current effective user id */
249 PERLVAR(Igid,           Gid_t)          /* current real group id */
250 PERLVAR(Iegid,          Gid_t)          /* current effective group id */
251 PERLVARI(Ian,           U32,    0)      /* malloc sequence number */
252 PERLVARI(Icop_seqmax,   U32,    0)      /* statement sequence number */
253 PERLVARI(Ievalseq,      U32,    0)      /* eval sequence number */
254 PERLVAR(Iorigalen,      U32)
255 PERLVAR(Iorigenviron,   char **)
256 #ifdef PERL_USES_PL_PIDSTATUS
257 PERLVAR(Ipidstatus,     HV *)           /* pid-to-status mappings for waitpid */
258 #endif
259 PERLVAR(Iosname,        char *)         /* operating system */
260
261 PERLVAR(Isighandlerp,   Sighandler_t)
262
263 PERLVARA(Ibody_roots,   PERL_ARENA_ROOTS_SIZE, void*) /* array of body roots */
264
265 PERLVAR(Inice_chunk,    char *)         /* a nice chunk of memory to reuse */
266 PERLVAR(Inice_chunk_size,       U32)    /* how nice the chunk of memory is */
267
268 PERLVARI(Imaxo, int,    MAXO)           /* maximum number of ops */
269
270 PERLVARI(Irunops,       runops_proc_t,  MEMBER_TO_FPTR(RUNOPS_DEFAULT))
271
272 PERLVARA(Itokenbuf,256, char)
273
274 /*
275 =for apidoc Amn|SV|PL_sv_undef
276 This is the C<undef> SV.  Always refer to this as C<&PL_sv_undef>.
277
278 =for apidoc Amn|SV|PL_sv_no
279 This is the C<false> SV.  See C<PL_sv_yes>.  Always refer to this as
280 C<&PL_sv_no>.
281
282 =for apidoc Amn|SV|PL_sv_yes
283 This is the C<true> SV.  See C<PL_sv_no>.  Always refer to this as
284 C<&PL_sv_yes>.
285
286 =cut
287 */
288
289 PERLVAR(Isv_undef,      SV)
290 PERLVAR(Isv_no,         SV)
291 PERLVAR(Isv_yes,        SV)
292
293 /* What we know when we're in LEX_KNOWNEXT state. */
294 #ifdef PERL_MAD
295 PERLVARA(Inexttoke,5,   NEXTTOKE)       /* value of next token, if any */
296 PERLVAR(Icurforce,      I32)
297 #else
298 PERLVARA(Inextval,5,    YYSTYPE)        /* value of next token, if any */
299 PERLVARA(Inexttype,5,   I32)            /* type of next token */
300 PERLVAR(Inexttoke,      I32)
301 #endif
302
303 PERLVAR(Ilinestr,       SV *)
304 PERLVAR(Ibufptr,        char *)
305 PERLVAR(Ioldbufptr,     char *)
306 PERLVAR(Ioldoldbufptr,  char *)
307 PERLVAR(Ibufend,        char *)
308
309 PERLVARI(Iexpect, U8,   XSTATE)         /* how to interpret ambiguous tokens */
310 PERLVAR(Ilex_state,     U8)             /* next token is determined */
311 PERLVAR(Ierror_count,   U8)             /* how many errors so far, max 10 */
312 PERLVARI(Icv_has_eval, bool, FALSE) /* PL_compcv includes an entereval or similar */
313 PERLVAR(Imulti_end,     I32)            /* last line of multi-line string */
314
315 PERLVAR(Isubname,       SV *)           /* name of current subroutine */
316
317 PERLVAR(Isubline,       I32)            /* line this subroutine began on */
318 PERLVAR(Imin_intro_pending,     I32)    /* start of vars to introduce */
319
320 PERLVAR(Imax_intro_pending,     I32)    /* end of vars to introduce */
321 PERLVAR(Ipadix,         I32)            /* max used index in current "register" pad */
322
323 PERLVAR(Ipadix_floor,   I32)            /* how low may inner block reset padix */
324 PERLVAR(Ipad_reset_pending,     I32)    /* reset pad on next attempted alloc */
325
326 PERLVAR(Ilast_uni,      char *)         /* position of last named-unary op */
327 PERLVAR(Ilast_lop,      char *)         /* position of last list operator */
328 PERLVAR(Iin_my_stash,   HV *)           /* declared class of this "my" declaration */
329
330 PERLVAR(Ihints,         U32)            /* pragma-tic compile-time flags */
331
332 PERLVAR(Idebug,         VOL U32)        /* flags given to -D switch */
333
334 PERLVARI(Iamagic_generation,    long,   0)
335
336 #ifdef USE_LOCALE_COLLATE
337 PERLVAR(Icollation_name,char *)         /* Name of current collation */
338 PERLVAR(Icollxfrm_base, Size_t)         /* Basic overhead in *xfrm() */
339 PERLVARI(Icollxfrm_mult,Size_t, 2)      /* Expansion factor in *xfrm() */
340 PERLVARI(Icollation_ix, U32,    0)      /* Collation generation index */
341 PERLVARI(Icollation_standard, bool,     TRUE)
342                                         /* Assume simple collation */
343 #endif /* USE_LOCALE_COLLATE */
344
345
346 #ifdef PERL_UTF8_CACHE_ASSERT
347 PERLVARI(Iutf8cache, I8, -1)    /* Is the utf8 caching code enabled? */
348 #else
349 PERLVARI(Iutf8cache, I8, 1)     /* Is the utf8 caching code enabled? */
350 #endif
351
352 #ifdef USE_LOCALE_NUMERIC
353
354 PERLVARI(Inumeric_standard,     bool,   TRUE)
355                                         /* Assume simple numerics */
356 PERLVARI(Inumeric_local,        bool,   TRUE)
357                                         /* Assume local numerics */
358 PERLVAR(Inumeric_name,  char *)         /* Name of current numeric locale */
359 #endif /* !USE_LOCALE_NUMERIC */
360
361 /* utf8 character classes */
362 PERLVAR(Iutf8_alnum,    SV *)
363 PERLVAR(Iutf8_alnumc,   SV *)
364 PERLVAR(Iutf8_ascii,    SV *)
365 PERLVAR(Iutf8_alpha,    SV *)
366 PERLVAR(Iutf8_space,    SV *)
367 PERLVAR(Iutf8_cntrl,    SV *)
368 PERLVAR(Iutf8_graph,    SV *)
369 PERLVAR(Iutf8_digit,    SV *)
370 PERLVAR(Iutf8_upper,    SV *)
371 PERLVAR(Iutf8_lower,    SV *)
372 PERLVAR(Iutf8_print,    SV *)
373 PERLVAR(Iutf8_punct,    SV *)
374 PERLVAR(Iutf8_xdigit,   SV *)
375 PERLVAR(Iutf8_mark,     SV *)
376 PERLVAR(Iutf8_toupper,  SV *)
377 PERLVAR(Iutf8_totitle,  SV *)
378 PERLVAR(Iutf8_tolower,  SV *)
379 PERLVAR(Iutf8_tofold,   SV *)
380 PERLVAR(Ilast_swash_hv, HV *)
381 PERLVAR(Ilast_swash_tmps,       U8 *)
382 PERLVAR(Ilast_swash_slen,       STRLEN)
383 PERLVARA(Ilast_swash_key,10,    U8)
384 PERLVAR(Ilast_swash_klen,       U8)     /* Only needs to store 0-10  */
385
386 #ifdef FCRYPT
387 PERLVARI(Icryptseen,    bool,   FALSE)  /* has fast crypt() been initialized? */
388 #endif
389
390 PERLVARI(Iglob_index,   int,    0)
391
392
393 PERLVAR(Iparser,        yy_parser *)    /* current parser state */
394
395 PERLVARA(Iuudmap,256,   char)
396 PERLVAR(Ibitcount,      char *)
397
398 PERLVAR(Ipsig_ptr, SV**)
399 PERLVAR(Ipsig_name, SV**)
400
401 #if defined(PERL_IMPLICIT_SYS)
402 PERLVAR(IMem,           struct IPerlMem*)
403 PERLVAR(IMemShared,     struct IPerlMem*)
404 PERLVAR(IMemParse,      struct IPerlMem*)
405 PERLVAR(IEnv,           struct IPerlEnv*)
406 PERLVAR(IStdIO,         struct IPerlStdIO*)
407 PERLVAR(ILIO,           struct IPerlLIO*)
408 PERLVAR(IDir,           struct IPerlDir*)
409 PERLVAR(ISock,          struct IPerlSock*)
410 PERLVAR(IProc,          struct IPerlProc*)
411 #endif
412
413 PERLVAR(Iptr_table,     PTR_TBL_t*)
414 PERLVARI(Ibeginav_save, AV*, NULL)      /* save BEGIN{}s when compiling */
415
416 PERLVAR(Ibody_arenas, void*) /* pointer to list of body-arenas */
417
418 PERLVAR(Ipsig_pend, int *)              /* per-signal "count" of pending */
419 PERLVARI(Isig_pending, int,0)           /* Number if highest signal pending */
420
421
422 PERLVAR(Itaint_warn,    bool)      /* taint warns instead of dying */
423 PERLVAR(Iutf8locale,    bool)           /* utf8 locale detected */
424 PERLVARI(Ihash_seed_set, bool, FALSE)           /* Hash initialized? */
425 PERLVARI(Irehash_seed_set, bool, FALSE) /* 582 hash initialized? */
426
427 #ifdef USE_LOCALE_NUMERIC
428
429 PERLVAR(Inumeric_radix_sv,      SV *)   /* The radix separator if not '.' */
430
431 #endif
432
433 #if defined(USE_ITHREADS)
434 PERLVAR(Iregex_pad,     SV**)           /* All regex objects */
435 PERLVAR(Iregex_padav,   AV*)            /* All regex objects */
436
437 #endif
438
439 #ifdef USE_REENTRANT_API
440 PERLVAR(Ireentrant_buffer, REENTR*)     /* here we store the _r buffers */
441 #endif
442
443
444 #ifdef PERL_MAD
445 PERLVARI(Imadskills,    bool, FALSE)    /* preserve all syntactic info */
446                                         /* (MAD = Misc Attribute Decoration) */
447 PERLVARI(Ixmlfp, PerlIO *,NULL)
448 #endif
449
450 PERLVAR(Icustom_op_names, HV*)  /* Names of user defined ops */
451 PERLVAR(Icustom_op_descs, HV*)  /* Descriptions of user defined ops */
452
453 #ifdef PERLIO_LAYERS
454 PERLVARI(Iperlio, PerlIO *,NULL)
455 PERLVARI(Iknown_layers, PerlIO_list_t *,NULL)
456 PERLVARI(Idef_layerlist, PerlIO_list_t *,NULL)
457 #endif
458
459 PERLVARI(Iencoding,     SV*, NULL)              /* character encoding */
460
461 PERLVAR(Idebug_pad,     struct perl_debug_pad)  /* always needed because of the re extension */
462
463 #ifdef PL_OP_SLAB_ALLOC
464 PERLVAR(IOpPtr,I32 **)
465 PERLVARI(IOpSpace,I32,0)
466 PERLVAR(IOpSlab,I32 *)
467 #endif
468
469 PERLVAR(Iutf8_idstart,  SV *)
470 PERLVAR(Iutf8_idcont,   SV *)
471
472 PERLVAR(Isort_RealCmp,  SVCOMPARE_t)
473
474 PERLVARI(Icheckav_save, AV*, NULL)      /* save CHECK{}s when compiling */
475 PERLVARI(Iunitcheckav_save, AV*, NULL)  /* save UNITCHECK{}s when compiling */
476
477 PERLVARI(Iclocktick, long, 0)   /* this many times() ticks in a second */
478
479 PERLVARI(Iin_load_module, int, 0)       /* to prevent recursions in PerlIO_find_layer */
480
481 PERLVAR(Iunicode, U32)  /* Unicode features: $ENV{PERL_UNICODE} or -C */
482
483 PERLVAR(Isignals, U32)  /* Using which pre-5.8 signals */
484
485 PERLVAR(Ireentrant_retint, int) /* Integer return value from reentrant functions */
486
487 PERLVAR(Istashcache,    HV *)           /* Cache to speed up S_method_common */
488
489 /* Hooks to shared SVs and locks. */
490 PERLVARI(Isharehook,    share_proc_t,   MEMBER_TO_FPTR(Perl_sv_nosharing))
491 PERLVARI(Ilockhook,     share_proc_t,   MEMBER_TO_FPTR(Perl_sv_nosharing))
492 #ifdef NO_MATHOMS
493 #  define PERL_UNLOCK_HOOK Perl_sv_nosharing
494 #else
495 /* This reference ensures that the mathoms are linked with perl */
496 #  define PERL_UNLOCK_HOOK Perl_sv_nounlocking
497 #endif
498 PERLVARI(Iunlockhook,   share_proc_t,   MEMBER_TO_FPTR(PERL_UNLOCK_HOOK))
499
500 PERLVARI(Ithreadhook,   thrhook_proc_t, MEMBER_TO_FPTR(Perl_nothreadhook))
501
502 /* Force inclusion of both runops options */
503 PERLVARI(Irunops_std,   runops_proc_t,  MEMBER_TO_FPTR(Perl_runops_standard))
504 PERLVARI(Irunops_dbg,   runops_proc_t,  MEMBER_TO_FPTR(Perl_runops_debug))
505
506 /* Stores the PPID */
507 #ifdef THREADS_HAVE_PIDS
508 PERLVARI(Ippid,         IV,             0)
509 #endif
510
511 PERLVARI(Ihash_seed, UV, 0)             /* Hash initializer */
512
513 PERLVAR(IDBassertion,   SV *)
514
515 PERLVARI(Irehash_seed, UV, 0)           /* 582 hash initializer */
516
517 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
518 /* File descriptor to talk to the child which dumps scalars.  */
519 PERLVARI(Idumper_fd, int, -1)
520 #endif
521
522 #ifdef PERL_IMPLICIT_CONTEXT
523 PERLVARI(Imy_cxt_size, int, 0)          /* size of PL_my_cxt_list */
524 PERLVARI(Imy_cxt_list, void **, NULL) /* per-module array of MY_CXT pointers */
525 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
526 PERLVARI(Imy_cxt_keys, const char **, NULL) /* per-module array of pointers to MY_CXT_KEY constants */
527 #endif
528 #endif
529
530 #ifdef PERL_TRACK_MEMPOOL
531 /* For use with the memory debugging code in util.c  */
532 PERLVAR(Imemory_debug_header, struct perl_memory_debug_header)
533 #endif
534
535 #ifdef PERL_DEBUG_READONLY_OPS
536 PERLVARI(Islabs, I32**, NULL)   /* Array of slabs that have been allocated */
537 PERLVARI(Islab_count, U32, 0)   /* Size of the array */
538 #endif
539
540 /* If you are adding a U16, see the comment above on where there are 2 bytes
541    of gap which currently will be structure padding.  */
542
543 /* Within a stable branch, new variables must be added to the very end, before
544  * this comment, for binary compatibility (the offsets of the old members must
545  *  not change).
546  * (Don't forget to add your variable also to perl_clone()!)
547  * XSUB.h provides wrapper functions via perlapi.h that make this
548  * irrelevant, but not all code may be expected to #include XSUB.h.
549  */