1 /* -*- buffer-read-only: t -*-
5 * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
6 * 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, by Larry Wall and others
8 * You may distribute under the terms of either the GNU General Public
9 * License or the Artistic License, as specified in the README file.
11 * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
12 * This file is built by embed.pl from data in embed.fnc, embed.pl,
13 * pp.sym, intrpvar.h, and perlvars.h.
14 * Any changes made here will be lost!
16 * Edit those files and run 'make regen_headers' to effect changes.
19 /* declare accessor functions for Perl variables */
23 #if defined (MULTIPLICITY)
32 #define PERLVAR(v,t) EXTERN_C t* Perl_##v##_ptr(pTHX);
33 #define PERLVARA(v,n,t) typedef t PL_##v##_t[n]; \
34 EXTERN_C PL_##v##_t* Perl_##v##_ptr(pTHX);
35 #define PERLVARI(v,t,i) PERLVAR(v,t)
36 #define PERLVARIC(v,t,i) PERLVAR(v, const t)
37 #define PERLVARISC(v,i) typedef const char PL_##v##_t[sizeof(i)]; \
38 EXTERN_C PL_##v##_t* Perl_##v##_ptr(pTHX);
49 #ifndef PERL_GLOBAL_STRUCT
50 EXTERN_C Perl_ppaddr_t** Perl_Gppaddr_ptr(pTHX);
51 EXTERN_C Perl_check_t** Perl_Gcheck_ptr(pTHX);
52 EXTERN_C unsigned char** Perl_Gfold_locale_ptr(pTHX);
53 #define Perl_ppaddr_ptr Perl_Gppaddr_ptr
54 #define Perl_check_ptr Perl_Gcheck_ptr
55 #define Perl_fold_locale_ptr Perl_Gfold_locale_ptr
60 #if defined(PERL_CORE)
62 /* accessor functions for Perl variables (provide binary compatibility) */
64 /* these need to be mentioned here, or most linkers won't put them in
65 the perl executable */
67 #ifndef PERL_NO_FORCE_LINK
72 EXTCONST void * const PL_force_link_funcs[];
74 EXTCONST void * const PL_force_link_funcs[] = {
79 #define PERLVAR(v,t) (void*)Perl_##v##_ptr,
80 #define PERLVARA(v,n,t) PERLVAR(v,t)
81 #define PERLVARI(v,t,i) PERLVAR(v,t)
82 #define PERLVARIC(v,t,i) PERLVAR(v,t)
83 #define PERLVARISC(v,i) PERLVAR(v,char)
85 /* In Tru64 (__DEC && __osf__) the cc option -std1 causes that one
86 * cannot cast between void pointers and function pointers without
87 * info level warnings. The PL_force_link_funcs[] would cause a few
88 * hundred of those warnings. In code one can circumnavigate this by using
89 * unions that overlay the different pointers, but in declarations one
90 * cannot use this trick. Therefore we just disable the warning here
91 * for the duration of the PL_force_link_funcs[] declaration. */
93 #if defined(__DECC) && defined(__osf__)
95 #pragma message disable (nonstandcast)
101 #if defined(__DECC) && defined(__osf__)
102 #pragma message restore
115 #endif /* PERL_NO_FORCE_LINK */
117 #else /* !PERL_CORE */
120 #define PL_Argv (*Perl_IArgv_ptr(aTHX))
122 #define PL_Cmd (*Perl_ICmd_ptr(aTHX))
124 #define PL_DBcv (*Perl_IDBcv_ptr(aTHX))
126 #define PL_DBgv (*Perl_IDBgv_ptr(aTHX))
128 #define PL_DBline (*Perl_IDBline_ptr(aTHX))
130 #define PL_DBsignal (*Perl_IDBsignal_ptr(aTHX))
132 #define PL_DBsingle (*Perl_IDBsingle_ptr(aTHX))
134 #define PL_DBsub (*Perl_IDBsub_ptr(aTHX))
136 #define PL_DBtrace (*Perl_IDBtrace_ptr(aTHX))
138 #define PL_Dir (*Perl_IDir_ptr(aTHX))
140 #define PL_Env (*Perl_IEnv_ptr(aTHX))
142 #define PL_LIO (*Perl_ILIO_ptr(aTHX))
144 #define PL_Mem (*Perl_IMem_ptr(aTHX))
146 #define PL_MemParse (*Perl_IMemParse_ptr(aTHX))
148 #define PL_MemShared (*Perl_IMemShared_ptr(aTHX))
150 #define PL_OpPtr (*Perl_IOpPtr_ptr(aTHX))
152 #define PL_OpSlab (*Perl_IOpSlab_ptr(aTHX))
154 #define PL_OpSpace (*Perl_IOpSpace_ptr(aTHX))
156 #define PL_Proc (*Perl_IProc_ptr(aTHX))
158 #define PL_Sock (*Perl_ISock_ptr(aTHX))
160 #define PL_StdIO (*Perl_IStdIO_ptr(aTHX))
162 #define PL_Sv (*Perl_ISv_ptr(aTHX))
164 #define PL_Xpv (*Perl_IXpv_ptr(aTHX))
165 #undef PL_amagic_generation
166 #define PL_amagic_generation (*Perl_Iamagic_generation_ptr(aTHX))
168 #define PL_an (*Perl_Ian_ptr(aTHX))
170 #define PL_argvgv (*Perl_Iargvgv_ptr(aTHX))
171 #undef PL_argvout_stack
172 #define PL_argvout_stack (*Perl_Iargvout_stack_ptr(aTHX))
174 #define PL_argvoutgv (*Perl_Iargvoutgv_ptr(aTHX))
176 #define PL_basetime (*Perl_Ibasetime_ptr(aTHX))
178 #define PL_beginav (*Perl_Ibeginav_ptr(aTHX))
179 #undef PL_beginav_save
180 #define PL_beginav_save (*Perl_Ibeginav_save_ptr(aTHX))
182 #define PL_bitcount (*Perl_Ibitcount_ptr(aTHX))
183 #undef PL_body_arenas
184 #define PL_body_arenas (*Perl_Ibody_arenas_ptr(aTHX))
186 #define PL_body_roots (*Perl_Ibody_roots_ptr(aTHX))
188 #define PL_bodytarget (*Perl_Ibodytarget_ptr(aTHX))
189 #undef PL_breakable_sub_gen
190 #define PL_breakable_sub_gen (*Perl_Ibreakable_sub_gen_ptr(aTHX))
192 #define PL_checkav (*Perl_Icheckav_ptr(aTHX))
193 #undef PL_checkav_save
194 #define PL_checkav_save (*Perl_Icheckav_save_ptr(aTHX))
196 #define PL_chopset (*Perl_Ichopset_ptr(aTHX))
198 #define PL_clocktick (*Perl_Iclocktick_ptr(aTHX))
199 #undef PL_collation_ix
200 #define PL_collation_ix (*Perl_Icollation_ix_ptr(aTHX))
201 #undef PL_collation_name
202 #define PL_collation_name (*Perl_Icollation_name_ptr(aTHX))
203 #undef PL_collation_standard
204 #define PL_collation_standard (*Perl_Icollation_standard_ptr(aTHX))
205 #undef PL_collxfrm_base
206 #define PL_collxfrm_base (*Perl_Icollxfrm_base_ptr(aTHX))
207 #undef PL_collxfrm_mult
208 #define PL_collxfrm_mult (*Perl_Icollxfrm_mult_ptr(aTHX))
210 #define PL_colors (*Perl_Icolors_ptr(aTHX))
212 #define PL_colorset (*Perl_Icolorset_ptr(aTHX))
214 #define PL_compcv (*Perl_Icompcv_ptr(aTHX))
216 #define PL_compiling (*Perl_Icompiling_ptr(aTHX))
218 #define PL_comppad (*Perl_Icomppad_ptr(aTHX))
219 #undef PL_comppad_name
220 #define PL_comppad_name (*Perl_Icomppad_name_ptr(aTHX))
221 #undef PL_comppad_name_fill
222 #define PL_comppad_name_fill (*Perl_Icomppad_name_fill_ptr(aTHX))
223 #undef PL_comppad_name_floor
224 #define PL_comppad_name_floor (*Perl_Icomppad_name_floor_ptr(aTHX))
226 #define PL_cop_seqmax (*Perl_Icop_seqmax_ptr(aTHX))
228 #define PL_cryptseen (*Perl_Icryptseen_ptr(aTHX))
230 #define PL_curcop (*Perl_Icurcop_ptr(aTHX))
232 #define PL_curcopdb (*Perl_Icurcopdb_ptr(aTHX))
234 #define PL_curpad (*Perl_Icurpad_ptr(aTHX))
236 #define PL_curpm (*Perl_Icurpm_ptr(aTHX))
238 #define PL_curstack (*Perl_Icurstack_ptr(aTHX))
239 #undef PL_curstackinfo
240 #define PL_curstackinfo (*Perl_Icurstackinfo_ptr(aTHX))
242 #define PL_curstash (*Perl_Icurstash_ptr(aTHX))
244 #define PL_curstname (*Perl_Icurstname_ptr(aTHX))
245 #undef PL_custom_op_descs
246 #define PL_custom_op_descs (*Perl_Icustom_op_descs_ptr(aTHX))
247 #undef PL_custom_op_names
248 #define PL_custom_op_names (*Perl_Icustom_op_names_ptr(aTHX))
249 #undef PL_cv_has_eval
250 #define PL_cv_has_eval (*Perl_Icv_has_eval_ptr(aTHX))
252 #define PL_dbargs (*Perl_Idbargs_ptr(aTHX))
254 #define PL_debstash (*Perl_Idebstash_ptr(aTHX))
256 #define PL_debug (*Perl_Idebug_ptr(aTHX))
258 #define PL_debug_pad (*Perl_Idebug_pad_ptr(aTHX))
259 #undef PL_def_layerlist
260 #define PL_def_layerlist (*Perl_Idef_layerlist_ptr(aTHX))
262 #define PL_defgv (*Perl_Idefgv_ptr(aTHX))
264 #define PL_defoutgv (*Perl_Idefoutgv_ptr(aTHX))
266 #define PL_defstash (*Perl_Idefstash_ptr(aTHX))
268 #define PL_delaymagic (*Perl_Idelaymagic_ptr(aTHX))
269 #undef PL_destroyhook
270 #define PL_destroyhook (*Perl_Idestroyhook_ptr(aTHX))
272 #define PL_diehook (*Perl_Idiehook_ptr(aTHX))
274 #define PL_dirty (*Perl_Idirty_ptr(aTHX))
276 #define PL_doextract (*Perl_Idoextract_ptr(aTHX))
278 #define PL_doswitches (*Perl_Idoswitches_ptr(aTHX))
280 #define PL_dowarn (*Perl_Idowarn_ptr(aTHX))
282 #define PL_dumper_fd (*Perl_Idumper_fd_ptr(aTHX))
284 #define PL_dumpindent (*Perl_Idumpindent_ptr(aTHX))
286 #define PL_e_script (*Perl_Ie_script_ptr(aTHX))
288 #define PL_efloatbuf (*Perl_Iefloatbuf_ptr(aTHX))
290 #define PL_efloatsize (*Perl_Iefloatsize_ptr(aTHX))
292 #define PL_egid (*Perl_Iegid_ptr(aTHX))
294 #define PL_encoding (*Perl_Iencoding_ptr(aTHX))
296 #define PL_endav (*Perl_Iendav_ptr(aTHX))
298 #define PL_envgv (*Perl_Ienvgv_ptr(aTHX))
300 #define PL_errgv (*Perl_Ierrgv_ptr(aTHX))
302 #define PL_errors (*Perl_Ierrors_ptr(aTHX))
304 #define PL_euid (*Perl_Ieuid_ptr(aTHX))
306 #define PL_eval_root (*Perl_Ieval_root_ptr(aTHX))
308 #define PL_eval_start (*Perl_Ieval_start_ptr(aTHX))
310 #define PL_evalseq (*Perl_Ievalseq_ptr(aTHX))
312 #define PL_exit_flags (*Perl_Iexit_flags_ptr(aTHX))
314 #define PL_exitlist (*Perl_Iexitlist_ptr(aTHX))
315 #undef PL_exitlistlen
316 #define PL_exitlistlen (*Perl_Iexitlistlen_ptr(aTHX))
318 #define PL_fdpid (*Perl_Ifdpid_ptr(aTHX))
320 #define PL_filemode (*Perl_Ifilemode_ptr(aTHX))
322 #define PL_firstgv (*Perl_Ifirstgv_ptr(aTHX))
323 #undef PL_forkprocess
324 #define PL_forkprocess (*Perl_Iforkprocess_ptr(aTHX))
326 #define PL_formfeed (*Perl_Iformfeed_ptr(aTHX))
328 #define PL_formtarget (*Perl_Iformtarget_ptr(aTHX))
330 #define PL_generation (*Perl_Igeneration_ptr(aTHX))
332 #define PL_gensym (*Perl_Igensym_ptr(aTHX))
334 #define PL_gid (*Perl_Igid_ptr(aTHX))
336 #define PL_glob_index (*Perl_Iglob_index_ptr(aTHX))
337 #undef PL_globalstash
338 #define PL_globalstash (*Perl_Iglobalstash_ptr(aTHX))
340 #define PL_hash_seed (*Perl_Ihash_seed_ptr(aTHX))
342 #define PL_hintgv (*Perl_Ihintgv_ptr(aTHX))
344 #define PL_hints (*Perl_Ihints_ptr(aTHX))
345 #undef PL_hv_fetch_ent_mh
346 #define PL_hv_fetch_ent_mh (*Perl_Ihv_fetch_ent_mh_ptr(aTHX))
347 #undef PL_in_clean_all
348 #define PL_in_clean_all (*Perl_Iin_clean_all_ptr(aTHX))
349 #undef PL_in_clean_objs
350 #define PL_in_clean_objs (*Perl_Iin_clean_objs_ptr(aTHX))
352 #define PL_in_eval (*Perl_Iin_eval_ptr(aTHX))
353 #undef PL_in_load_module
354 #define PL_in_load_module (*Perl_Iin_load_module_ptr(aTHX))
356 #define PL_incgv (*Perl_Iincgv_ptr(aTHX))
358 #define PL_initav (*Perl_Iinitav_ptr(aTHX))
360 #define PL_inplace (*Perl_Iinplace_ptr(aTHX))
362 #define PL_isarev (*Perl_Iisarev_ptr(aTHX))
363 #undef PL_known_layers
364 #define PL_known_layers (*Perl_Iknown_layers_ptr(aTHX))
366 #define PL_last_in_gv (*Perl_Ilast_in_gv_ptr(aTHX))
367 #undef PL_last_swash_hv
368 #define PL_last_swash_hv (*Perl_Ilast_swash_hv_ptr(aTHX))
369 #undef PL_last_swash_key
370 #define PL_last_swash_key (*Perl_Ilast_swash_key_ptr(aTHX))
371 #undef PL_last_swash_klen
372 #define PL_last_swash_klen (*Perl_Ilast_swash_klen_ptr(aTHX))
373 #undef PL_last_swash_slen
374 #define PL_last_swash_slen (*Perl_Ilast_swash_slen_ptr(aTHX))
375 #undef PL_last_swash_tmps
376 #define PL_last_swash_tmps (*Perl_Ilast_swash_tmps_ptr(aTHX))
378 #define PL_lastfd (*Perl_Ilastfd_ptr(aTHX))
379 #undef PL_lastgotoprobe
380 #define PL_lastgotoprobe (*Perl_Ilastgotoprobe_ptr(aTHX))
382 #define PL_lastscream (*Perl_Ilastscream_ptr(aTHX))
383 #undef PL_laststatval
384 #define PL_laststatval (*Perl_Ilaststatval_ptr(aTHX))
386 #define PL_laststype (*Perl_Ilaststype_ptr(aTHX))
388 #define PL_localizing (*Perl_Ilocalizing_ptr(aTHX))
389 #undef PL_localpatches
390 #define PL_localpatches (*Perl_Ilocalpatches_ptr(aTHX))
392 #define PL_lockhook (*Perl_Ilockhook_ptr(aTHX))
394 #define PL_madskills (*Perl_Imadskills_ptr(aTHX))
396 #define PL_main_cv (*Perl_Imain_cv_ptr(aTHX))
398 #define PL_main_root (*Perl_Imain_root_ptr(aTHX))
400 #define PL_main_start (*Perl_Imain_start_ptr(aTHX))
402 #define PL_mainstack (*Perl_Imainstack_ptr(aTHX))
404 #define PL_markstack (*Perl_Imarkstack_ptr(aTHX))
405 #undef PL_markstack_max
406 #define PL_markstack_max (*Perl_Imarkstack_max_ptr(aTHX))
407 #undef PL_markstack_ptr
408 #define PL_markstack_ptr (*Perl_Imarkstack_ptr_ptr(aTHX))
409 #undef PL_max_intro_pending
410 #define PL_max_intro_pending (*Perl_Imax_intro_pending_ptr(aTHX))
412 #define PL_maxo (*Perl_Imaxo_ptr(aTHX))
414 #define PL_maxscream (*Perl_Imaxscream_ptr(aTHX))
416 #define PL_maxsysfd (*Perl_Imaxsysfd_ptr(aTHX))
417 #undef PL_memory_debug_header
418 #define PL_memory_debug_header (*Perl_Imemory_debug_header_ptr(aTHX))
420 #define PL_mess_sv (*Perl_Imess_sv_ptr(aTHX))
421 #undef PL_min_intro_pending
422 #define PL_min_intro_pending (*Perl_Imin_intro_pending_ptr(aTHX))
424 #define PL_minus_E (*Perl_Iminus_E_ptr(aTHX))
426 #define PL_minus_F (*Perl_Iminus_F_ptr(aTHX))
428 #define PL_minus_a (*Perl_Iminus_a_ptr(aTHX))
430 #define PL_minus_c (*Perl_Iminus_c_ptr(aTHX))
432 #define PL_minus_l (*Perl_Iminus_l_ptr(aTHX))
434 #define PL_minus_n (*Perl_Iminus_n_ptr(aTHX))
436 #define PL_minus_p (*Perl_Iminus_p_ptr(aTHX))
438 #define PL_modcount (*Perl_Imodcount_ptr(aTHX))
440 #define PL_modglobal (*Perl_Imodglobal_ptr(aTHX))
441 #undef PL_my_cxt_keys
442 #define PL_my_cxt_keys (*Perl_Imy_cxt_keys_ptr(aTHX))
443 #undef PL_my_cxt_list
444 #define PL_my_cxt_list (*Perl_Imy_cxt_list_ptr(aTHX))
445 #undef PL_my_cxt_size
446 #define PL_my_cxt_size (*Perl_Imy_cxt_size_ptr(aTHX))
448 #define PL_na (*Perl_Ina_ptr(aTHX))
450 #define PL_nice_chunk (*Perl_Inice_chunk_ptr(aTHX))
451 #undef PL_nice_chunk_size
452 #define PL_nice_chunk_size (*Perl_Inice_chunk_size_ptr(aTHX))
454 #define PL_nomemok (*Perl_Inomemok_ptr(aTHX))
455 #undef PL_numeric_local
456 #define PL_numeric_local (*Perl_Inumeric_local_ptr(aTHX))
457 #undef PL_numeric_name
458 #define PL_numeric_name (*Perl_Inumeric_name_ptr(aTHX))
459 #undef PL_numeric_radix_sv
460 #define PL_numeric_radix_sv (*Perl_Inumeric_radix_sv_ptr(aTHX))
461 #undef PL_numeric_standard
462 #define PL_numeric_standard (*Perl_Inumeric_standard_ptr(aTHX))
464 #define PL_ofsgv (*Perl_Iofsgv_ptr(aTHX))
466 #define PL_oldname (*Perl_Ioldname_ptr(aTHX))
468 #define PL_op (*Perl_Iop_ptr(aTHX))
470 #define PL_op_mask (*Perl_Iop_mask_ptr(aTHX))
472 #define PL_opsave (*Perl_Iopsave_ptr(aTHX))
474 #define PL_origalen (*Perl_Iorigalen_ptr(aTHX))
476 #define PL_origargc (*Perl_Iorigargc_ptr(aTHX))
478 #define PL_origargv (*Perl_Iorigargv_ptr(aTHX))
479 #undef PL_origenviron
480 #define PL_origenviron (*Perl_Iorigenviron_ptr(aTHX))
481 #undef PL_origfilename
482 #define PL_origfilename (*Perl_Iorigfilename_ptr(aTHX))
484 #define PL_ors_sv (*Perl_Iors_sv_ptr(aTHX))
486 #define PL_osname (*Perl_Iosname_ptr(aTHX))
487 #undef PL_pad_reset_pending
488 #define PL_pad_reset_pending (*Perl_Ipad_reset_pending_ptr(aTHX))
490 #define PL_padix (*Perl_Ipadix_ptr(aTHX))
491 #undef PL_padix_floor
492 #define PL_padix_floor (*Perl_Ipadix_floor_ptr(aTHX))
494 #define PL_parser (*Perl_Iparser_ptr(aTHX))
496 #define PL_patchlevel (*Perl_Ipatchlevel_ptr(aTHX))
498 #define PL_peepp (*Perl_Ipeepp_ptr(aTHX))
499 #undef PL_perl_destruct_level
500 #define PL_perl_destruct_level (*Perl_Iperl_destruct_level_ptr(aTHX))
502 #define PL_perldb (*Perl_Iperldb_ptr(aTHX))
504 #define PL_perlio (*Perl_Iperlio_ptr(aTHX))
506 #define PL_pidstatus (*Perl_Ipidstatus_ptr(aTHX))
508 #define PL_ppid (*Perl_Ippid_ptr(aTHX))
510 #define PL_preambleav (*Perl_Ipreambleav_ptr(aTHX))
511 #undef PL_profiledata
512 #define PL_profiledata (*Perl_Iprofiledata_ptr(aTHX))
514 #define PL_psig_name (*Perl_Ipsig_name_ptr(aTHX))
516 #define PL_psig_pend (*Perl_Ipsig_pend_ptr(aTHX))
518 #define PL_psig_ptr (*Perl_Ipsig_ptr_ptr(aTHX))
520 #define PL_ptr_table (*Perl_Iptr_table_ptr(aTHX))
521 #undef PL_reentrant_buffer
522 #define PL_reentrant_buffer (*Perl_Ireentrant_buffer_ptr(aTHX))
523 #undef PL_reentrant_retint
524 #define PL_reentrant_retint (*Perl_Ireentrant_retint_ptr(aTHX))
526 #define PL_reg_state (*Perl_Ireg_state_ptr(aTHX))
528 #define PL_regdummy (*Perl_Iregdummy_ptr(aTHX))
530 #define PL_regex_pad (*Perl_Iregex_pad_ptr(aTHX))
531 #undef PL_regex_padav
532 #define PL_regex_padav (*Perl_Iregex_padav_ptr(aTHX))
533 #undef PL_reginterp_cnt
534 #define PL_reginterp_cnt (*Perl_Ireginterp_cnt_ptr(aTHX))
535 #undef PL_registered_mros
536 #define PL_registered_mros (*Perl_Iregistered_mros_ptr(aTHX))
537 #undef PL_regmatch_slab
538 #define PL_regmatch_slab (*Perl_Iregmatch_slab_ptr(aTHX))
539 #undef PL_regmatch_state
540 #define PL_regmatch_state (*Perl_Iregmatch_state_ptr(aTHX))
541 #undef PL_rehash_seed
542 #define PL_rehash_seed (*Perl_Irehash_seed_ptr(aTHX))
543 #undef PL_rehash_seed_set
544 #define PL_rehash_seed_set (*Perl_Irehash_seed_set_ptr(aTHX))
546 #define PL_replgv (*Perl_Ireplgv_ptr(aTHX))
548 #define PL_restartop (*Perl_Irestartop_ptr(aTHX))
550 #define PL_rs (*Perl_Irs_ptr(aTHX))
552 #define PL_runops (*Perl_Irunops_ptr(aTHX))
554 #define PL_savebegin (*Perl_Isavebegin_ptr(aTHX))
556 #define PL_savestack (*Perl_Isavestack_ptr(aTHX))
557 #undef PL_savestack_ix
558 #define PL_savestack_ix (*Perl_Isavestack_ix_ptr(aTHX))
559 #undef PL_savestack_max
560 #define PL_savestack_max (*Perl_Isavestack_max_ptr(aTHX))
561 #undef PL_sawampersand
562 #define PL_sawampersand (*Perl_Isawampersand_ptr(aTHX))
564 #define PL_scopestack (*Perl_Iscopestack_ptr(aTHX))
565 #undef PL_scopestack_ix
566 #define PL_scopestack_ix (*Perl_Iscopestack_ix_ptr(aTHX))
567 #undef PL_scopestack_max
568 #define PL_scopestack_max (*Perl_Iscopestack_max_ptr(aTHX))
569 #undef PL_screamfirst
570 #define PL_screamfirst (*Perl_Iscreamfirst_ptr(aTHX))
572 #define PL_screamnext (*Perl_Iscreamnext_ptr(aTHX))
574 #define PL_secondgv (*Perl_Isecondgv_ptr(aTHX))
576 #define PL_sharehook (*Perl_Isharehook_ptr(aTHX))
577 #undef PL_sig_pending
578 #define PL_sig_pending (*Perl_Isig_pending_ptr(aTHX))
579 #undef PL_sighandlerp
580 #define PL_sighandlerp (*Perl_Isighandlerp_ptr(aTHX))
582 #define PL_signals (*Perl_Isignals_ptr(aTHX))
584 #define PL_slab_count (*Perl_Islab_count_ptr(aTHX))
586 #define PL_slabs (*Perl_Islabs_ptr(aTHX))
587 #undef PL_sort_RealCmp
588 #define PL_sort_RealCmp (*Perl_Isort_RealCmp_ptr(aTHX))
590 #define PL_sortcop (*Perl_Isortcop_ptr(aTHX))
592 #define PL_sortstash (*Perl_Isortstash_ptr(aTHX))
594 #define PL_splitstr (*Perl_Isplitstr_ptr(aTHX))
595 #undef PL_srand_called
596 #define PL_srand_called (*Perl_Isrand_called_ptr(aTHX))
598 #define PL_stack_base (*Perl_Istack_base_ptr(aTHX))
600 #define PL_stack_max (*Perl_Istack_max_ptr(aTHX))
602 #define PL_stack_sp (*Perl_Istack_sp_ptr(aTHX))
604 #define PL_start_env (*Perl_Istart_env_ptr(aTHX))
606 #define PL_stashcache (*Perl_Istashcache_ptr(aTHX))
608 #define PL_statbuf (*Perl_Istatbuf_ptr(aTHX))
610 #define PL_statcache (*Perl_Istatcache_ptr(aTHX))
612 #define PL_statgv (*Perl_Istatgv_ptr(aTHX))
614 #define PL_statname (*Perl_Istatname_ptr(aTHX))
615 #undef PL_statusvalue
616 #define PL_statusvalue (*Perl_Istatusvalue_ptr(aTHX))
617 #undef PL_statusvalue_posix
618 #define PL_statusvalue_posix (*Perl_Istatusvalue_posix_ptr(aTHX))
619 #undef PL_statusvalue_vms
620 #define PL_statusvalue_vms (*Perl_Istatusvalue_vms_ptr(aTHX))
622 #define PL_stderrgv (*Perl_Istderrgv_ptr(aTHX))
624 #define PL_stdingv (*Perl_Istdingv_ptr(aTHX))
626 #define PL_strtab (*Perl_Istrtab_ptr(aTHX))
627 #undef PL_sub_generation
628 #define PL_sub_generation (*Perl_Isub_generation_ptr(aTHX))
630 #define PL_subline (*Perl_Isubline_ptr(aTHX))
632 #define PL_subname (*Perl_Isubname_ptr(aTHX))
633 #undef PL_sv_arenaroot
634 #define PL_sv_arenaroot (*Perl_Isv_arenaroot_ptr(aTHX))
636 #define PL_sv_count (*Perl_Isv_count_ptr(aTHX))
638 #define PL_sv_no (*Perl_Isv_no_ptr(aTHX))
639 #undef PL_sv_objcount
640 #define PL_sv_objcount (*Perl_Isv_objcount_ptr(aTHX))
642 #define PL_sv_root (*Perl_Isv_root_ptr(aTHX))
644 #define PL_sv_serial (*Perl_Isv_serial_ptr(aTHX))
646 #define PL_sv_undef (*Perl_Isv_undef_ptr(aTHX))
648 #define PL_sv_yes (*Perl_Isv_yes_ptr(aTHX))
650 #define PL_sys_intern (*Perl_Isys_intern_ptr(aTHX))
652 #define PL_taint_warn (*Perl_Itaint_warn_ptr(aTHX))
654 #define PL_tainted (*Perl_Itainted_ptr(aTHX))
656 #define PL_tainting (*Perl_Itainting_ptr(aTHX))
658 #define PL_threadhook (*Perl_Ithreadhook_ptr(aTHX))
660 #define PL_timesbuf (*Perl_Itimesbuf_ptr(aTHX))
662 #define PL_tmps_floor (*Perl_Itmps_floor_ptr(aTHX))
664 #define PL_tmps_ix (*Perl_Itmps_ix_ptr(aTHX))
666 #define PL_tmps_max (*Perl_Itmps_max_ptr(aTHX))
668 #define PL_tmps_stack (*Perl_Itmps_stack_ptr(aTHX))
670 #define PL_top_env (*Perl_Itop_env_ptr(aTHX))
672 #define PL_toptarget (*Perl_Itoptarget_ptr(aTHX))
674 #define PL_uid (*Perl_Iuid_ptr(aTHX))
676 #define PL_unicode (*Perl_Iunicode_ptr(aTHX))
677 #undef PL_unitcheckav
678 #define PL_unitcheckav (*Perl_Iunitcheckav_ptr(aTHX))
679 #undef PL_unitcheckav_save
680 #define PL_unitcheckav_save (*Perl_Iunitcheckav_save_ptr(aTHX))
682 #define PL_unlockhook (*Perl_Iunlockhook_ptr(aTHX))
684 #define PL_unsafe (*Perl_Iunsafe_ptr(aTHX))
686 #define PL_utf8_alnum (*Perl_Iutf8_alnum_ptr(aTHX))
687 #undef PL_utf8_alnumc
688 #define PL_utf8_alnumc (*Perl_Iutf8_alnumc_ptr(aTHX))
690 #define PL_utf8_alpha (*Perl_Iutf8_alpha_ptr(aTHX))
692 #define PL_utf8_ascii (*Perl_Iutf8_ascii_ptr(aTHX))
694 #define PL_utf8_cntrl (*Perl_Iutf8_cntrl_ptr(aTHX))
696 #define PL_utf8_digit (*Perl_Iutf8_digit_ptr(aTHX))
698 #define PL_utf8_graph (*Perl_Iutf8_graph_ptr(aTHX))
699 #undef PL_utf8_idcont
700 #define PL_utf8_idcont (*Perl_Iutf8_idcont_ptr(aTHX))
701 #undef PL_utf8_idstart
702 #define PL_utf8_idstart (*Perl_Iutf8_idstart_ptr(aTHX))
704 #define PL_utf8_lower (*Perl_Iutf8_lower_ptr(aTHX))
706 #define PL_utf8_mark (*Perl_Iutf8_mark_ptr(aTHX))
708 #define PL_utf8_print (*Perl_Iutf8_print_ptr(aTHX))
710 #define PL_utf8_punct (*Perl_Iutf8_punct_ptr(aTHX))
712 #define PL_utf8_space (*Perl_Iutf8_space_ptr(aTHX))
713 #undef PL_utf8_tofold
714 #define PL_utf8_tofold (*Perl_Iutf8_tofold_ptr(aTHX))
715 #undef PL_utf8_tolower
716 #define PL_utf8_tolower (*Perl_Iutf8_tolower_ptr(aTHX))
717 #undef PL_utf8_totitle
718 #define PL_utf8_totitle (*Perl_Iutf8_totitle_ptr(aTHX))
719 #undef PL_utf8_toupper
720 #define PL_utf8_toupper (*Perl_Iutf8_toupper_ptr(aTHX))
722 #define PL_utf8_upper (*Perl_Iutf8_upper_ptr(aTHX))
723 #undef PL_utf8_xdigit
724 #define PL_utf8_xdigit (*Perl_Iutf8_xdigit_ptr(aTHX))
726 #define PL_utf8cache (*Perl_Iutf8cache_ptr(aTHX))
728 #define PL_utf8locale (*Perl_Iutf8locale_ptr(aTHX))
730 #define PL_warnhook (*Perl_Iwarnhook_ptr(aTHX))
732 #define PL_watchaddr (*Perl_Iwatchaddr_ptr(aTHX))
734 #define PL_watchok (*Perl_Iwatchok_ptr(aTHX))
736 #define PL_xmlfp (*Perl_Ixmlfp_ptr(aTHX))
738 #define PL_No (*Perl_GNo_ptr(NULL))
740 #define PL_Yes (*Perl_GYes_ptr(NULL))
742 #define PL_appctx (*Perl_Gappctx_ptr(NULL))
744 #define PL_check (*Perl_Gcheck_ptr(NULL))
745 #undef PL_csighandlerp
746 #define PL_csighandlerp (*Perl_Gcsighandlerp_ptr(NULL))
748 #define PL_curinterp (*Perl_Gcurinterp_ptr(NULL))
750 #define PL_do_undump (*Perl_Gdo_undump_ptr(NULL))
751 #undef PL_dollarzero_mutex
752 #define PL_dollarzero_mutex (*Perl_Gdollarzero_mutex_ptr(NULL))
753 #undef PL_fold_locale
754 #define PL_fold_locale (*Perl_Gfold_locale_ptr(NULL))
755 #undef PL_global_struct_size
756 #define PL_global_struct_size (*Perl_Gglobal_struct_size_ptr(NULL))
758 #define PL_hexdigit (*Perl_Ghexdigit_ptr(NULL))
759 #undef PL_hints_mutex
760 #define PL_hints_mutex (*Perl_Ghints_mutex_ptr(NULL))
761 #undef PL_interp_size
762 #define PL_interp_size (*Perl_Ginterp_size_ptr(NULL))
763 #undef PL_interp_size_5_10_0
764 #define PL_interp_size_5_10_0 (*Perl_Ginterp_size_5_10_0_ptr(NULL))
765 #undef PL_malloc_mutex
766 #define PL_malloc_mutex (*Perl_Gmalloc_mutex_ptr(NULL))
767 #undef PL_mmap_page_size
768 #define PL_mmap_page_size (*Perl_Gmmap_page_size_ptr(NULL))
769 #undef PL_my_ctx_mutex
770 #define PL_my_ctx_mutex (*Perl_Gmy_ctx_mutex_ptr(NULL))
771 #undef PL_my_cxt_index
772 #define PL_my_cxt_index (*Perl_Gmy_cxt_index_ptr(NULL))
774 #define PL_op_mutex (*Perl_Gop_mutex_ptr(NULL))
776 #define PL_op_seq (*Perl_Gop_seq_ptr(NULL))
777 #undef PL_op_sequence
778 #define PL_op_sequence (*Perl_Gop_sequence_ptr(NULL))
780 #define PL_patleave (*Perl_Gpatleave_ptr(NULL))
781 #undef PL_perlio_debug_fd
782 #define PL_perlio_debug_fd (*Perl_Gperlio_debug_fd_ptr(NULL))
783 #undef PL_perlio_fd_refcnt
784 #define PL_perlio_fd_refcnt (*Perl_Gperlio_fd_refcnt_ptr(NULL))
785 #undef PL_perlio_fd_refcnt_size
786 #define PL_perlio_fd_refcnt_size (*Perl_Gperlio_fd_refcnt_size_ptr(NULL))
787 #undef PL_perlio_mutex
788 #define PL_perlio_mutex (*Perl_Gperlio_mutex_ptr(NULL))
790 #define PL_ppaddr (*Perl_Gppaddr_ptr(NULL))
792 #define PL_revision (*Perl_Grevision_ptr(NULL))
794 #define PL_runops_dbg (*Perl_Grunops_dbg_ptr(NULL))
796 #define PL_runops_std (*Perl_Grunops_std_ptr(NULL))
798 #define PL_sh_path (*Perl_Gsh_path_ptr(NULL))
799 #undef PL_sig_defaulting
800 #define PL_sig_defaulting (*Perl_Gsig_defaulting_ptr(NULL))
801 #undef PL_sig_handlers_initted
802 #define PL_sig_handlers_initted (*Perl_Gsig_handlers_initted_ptr(NULL))
803 #undef PL_sig_ignoring
804 #define PL_sig_ignoring (*Perl_Gsig_ignoring_ptr(NULL))
806 #define PL_sig_sv (*Perl_Gsig_sv_ptr(NULL))
807 #undef PL_sig_trapped
808 #define PL_sig_trapped (*Perl_Gsig_trapped_ptr(NULL))
809 #undef PL_sigfpe_saved
810 #define PL_sigfpe_saved (*Perl_Gsigfpe_saved_ptr(NULL))
812 #define PL_subversion (*Perl_Gsubversion_ptr(NULL))
813 #undef PL_sv_placeholder
814 #define PL_sv_placeholder (*Perl_Gsv_placeholder_ptr(NULL))
816 #define PL_thr_key (*Perl_Gthr_key_ptr(NULL))
818 #define PL_timesbase (*Perl_Gtimesbase_ptr(NULL))
819 #undef PL_use_safe_putenv
820 #define PL_use_safe_putenv (*Perl_Guse_safe_putenv_ptr(NULL))
822 #define PL_version (*Perl_Gversion_ptr(NULL))
823 #undef PL_veto_cleanup
824 #define PL_veto_cleanup (*Perl_Gveto_cleanup_ptr(NULL))
826 #define PL_watch_pvx (*Perl_Gwatch_pvx_ptr(NULL))
828 #endif /* !PERL_CORE */
829 #endif /* MULTIPLICITY */
831 #endif /* __perlapi_h__ */