| 1 | /* -*- buffer-read-only: t -*-
|
|---|
| 2 | *
|
|---|
| 3 | * perlapi.h
|
|---|
| 4 | *
|
|---|
| 5 | * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
|---|
| 6 | * 2000, 2001, 2002, 2003, 2004, 2005, 2006, by Larry Wall and others
|
|---|
| 7 | *
|
|---|
| 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.
|
|---|
| 10 | *
|
|---|
| 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, perlvars.h and thrdvar.h.
|
|---|
| 14 | * Any changes made here will be lost!
|
|---|
| 15 | *
|
|---|
| 16 | * Edit those files and run 'make regen_headers' to effect changes.
|
|---|
| 17 | */
|
|---|
| 18 |
|
|---|
| 19 | /* declare accessor functions for Perl variables */
|
|---|
| 20 | #ifndef __perlapi_h__
|
|---|
| 21 | #define __perlapi_h__
|
|---|
| 22 |
|
|---|
| 23 | #if defined (MULTIPLICITY)
|
|---|
| 24 |
|
|---|
| 25 | START_EXTERN_C
|
|---|
| 26 |
|
|---|
| 27 | #undef PERLVAR
|
|---|
| 28 | #undef PERLVARA
|
|---|
| 29 | #undef PERLVARI
|
|---|
| 30 | #undef PERLVARIC
|
|---|
| 31 | #define PERLVAR(v,t) EXTERN_C t* Perl_##v##_ptr(pTHX);
|
|---|
| 32 | #define PERLVARA(v,n,t) typedef t PL_##v##_t[n]; \
|
|---|
| 33 | EXTERN_C PL_##v##_t* Perl_##v##_ptr(pTHX);
|
|---|
| 34 | #define PERLVARI(v,t,i) PERLVAR(v,t)
|
|---|
| 35 | #define PERLVARIC(v,t,i) PERLVAR(v, const t)
|
|---|
| 36 |
|
|---|
| 37 | #include "thrdvar.h"
|
|---|
| 38 | #include "intrpvar.h"
|
|---|
| 39 | #include "perlvars.h"
|
|---|
| 40 |
|
|---|
| 41 | #undef PERLVAR
|
|---|
| 42 | #undef PERLVARA
|
|---|
| 43 | #undef PERLVARI
|
|---|
| 44 | #undef PERLVARIC
|
|---|
| 45 |
|
|---|
| 46 | END_EXTERN_C
|
|---|
| 47 |
|
|---|
| 48 | #if defined(PERL_CORE)
|
|---|
| 49 |
|
|---|
| 50 | /* accessor functions for Perl variables (provide binary compatibility) */
|
|---|
| 51 |
|
|---|
| 52 | /* these need to be mentioned here, or most linkers won't put them in
|
|---|
| 53 | the perl executable */
|
|---|
| 54 |
|
|---|
| 55 | #ifndef PERL_NO_FORCE_LINK
|
|---|
| 56 |
|
|---|
| 57 | START_EXTERN_C
|
|---|
| 58 |
|
|---|
| 59 | #ifndef DOINIT
|
|---|
| 60 | EXT void *PL_force_link_funcs[];
|
|---|
| 61 | #else
|
|---|
| 62 | EXT void *PL_force_link_funcs[] = {
|
|---|
| 63 | #undef PERLVAR
|
|---|
| 64 | #undef PERLVARA
|
|---|
| 65 | #undef PERLVARI
|
|---|
| 66 | #undef PERLVARIC
|
|---|
| 67 | #define PERLVAR(v,t) (void*)Perl_##v##_ptr,
|
|---|
| 68 | #define PERLVARA(v,n,t) PERLVAR(v,t)
|
|---|
| 69 | #define PERLVARI(v,t,i) PERLVAR(v,t)
|
|---|
| 70 | #define PERLVARIC(v,t,i) PERLVAR(v,t)
|
|---|
| 71 |
|
|---|
| 72 | /* In Tru64 (__DEC && __osf__) the cc option -std1 causes that one
|
|---|
| 73 | * cannot cast between void pointers and function pointers without
|
|---|
| 74 | * info level warnings. The PL_force_link_funcs[] would cause a few
|
|---|
| 75 | * hundred of those warnings. In code one can circumnavigate this by using
|
|---|
| 76 | * unions that overlay the different pointers, but in declarations one
|
|---|
| 77 | * cannot use this trick. Therefore we just disable the warning here
|
|---|
| 78 | * for the duration of the PL_force_link_funcs[] declaration. */
|
|---|
| 79 |
|
|---|
| 80 | #if defined(__DECC) && defined(__osf__)
|
|---|
| 81 | #pragma message save
|
|---|
| 82 | #pragma message disable (nonstandcast)
|
|---|
| 83 | #endif
|
|---|
| 84 |
|
|---|
| 85 | #include "thrdvar.h"
|
|---|
| 86 | #include "intrpvar.h"
|
|---|
| 87 | #include "perlvars.h"
|
|---|
| 88 |
|
|---|
| 89 | #if defined(__DECC) && defined(__osf__)
|
|---|
| 90 | #pragma message restore
|
|---|
| 91 | #endif
|
|---|
| 92 |
|
|---|
| 93 | #undef PERLVAR
|
|---|
| 94 | #undef PERLVARA
|
|---|
| 95 | #undef PERLVARI
|
|---|
| 96 | #undef PERLVARIC
|
|---|
| 97 | };
|
|---|
| 98 | #endif /* DOINIT */
|
|---|
| 99 |
|
|---|
| 100 | END_EXTERN_C
|
|---|
| 101 |
|
|---|
| 102 | #endif /* PERL_NO_FORCE_LINK */
|
|---|
| 103 |
|
|---|
| 104 | #else /* !PERL_CORE */
|
|---|
| 105 |
|
|---|
| 106 | #undef PL_Argv
|
|---|
| 107 | #define PL_Argv (*Perl_IArgv_ptr(aTHX))
|
|---|
| 108 | #undef PL_BINCOMPAT0
|
|---|
| 109 | #define PL_BINCOMPAT0 (*Perl_IBINCOMPAT0_ptr(aTHX))
|
|---|
| 110 | #undef PL_Cmd
|
|---|
| 111 | #define PL_Cmd (*Perl_ICmd_ptr(aTHX))
|
|---|
| 112 | #undef PL_DBcv
|
|---|
| 113 | #define PL_DBcv (*Perl_IDBcv_ptr(aTHX))
|
|---|
| 114 | #undef PL_DBgv
|
|---|
| 115 | #define PL_DBgv (*Perl_IDBgv_ptr(aTHX))
|
|---|
| 116 | #undef PL_DBline
|
|---|
| 117 | #define PL_DBline (*Perl_IDBline_ptr(aTHX))
|
|---|
| 118 | #undef PL_DBsignal
|
|---|
| 119 | #define PL_DBsignal (*Perl_IDBsignal_ptr(aTHX))
|
|---|
| 120 | #undef PL_DBsingle
|
|---|
| 121 | #define PL_DBsingle (*Perl_IDBsingle_ptr(aTHX))
|
|---|
| 122 | #undef PL_DBsub
|
|---|
| 123 | #define PL_DBsub (*Perl_IDBsub_ptr(aTHX))
|
|---|
| 124 | #undef PL_DBtrace
|
|---|
| 125 | #define PL_DBtrace (*Perl_IDBtrace_ptr(aTHX))
|
|---|
| 126 | #undef PL_Dir
|
|---|
| 127 | #define PL_Dir (*Perl_IDir_ptr(aTHX))
|
|---|
| 128 | #undef PL_Env
|
|---|
| 129 | #define PL_Env (*Perl_IEnv_ptr(aTHX))
|
|---|
| 130 | #undef PL_LIO
|
|---|
| 131 | #define PL_LIO (*Perl_ILIO_ptr(aTHX))
|
|---|
| 132 | #undef PL_Mem
|
|---|
| 133 | #define PL_Mem (*Perl_IMem_ptr(aTHX))
|
|---|
| 134 | #undef PL_MemParse
|
|---|
| 135 | #define PL_MemParse (*Perl_IMemParse_ptr(aTHX))
|
|---|
| 136 | #undef PL_MemShared
|
|---|
| 137 | #define PL_MemShared (*Perl_IMemShared_ptr(aTHX))
|
|---|
| 138 | #undef PL_OpPtr
|
|---|
| 139 | #define PL_OpPtr (*Perl_IOpPtr_ptr(aTHX))
|
|---|
| 140 | #undef PL_OpSlab
|
|---|
| 141 | #define PL_OpSlab (*Perl_IOpSlab_ptr(aTHX))
|
|---|
| 142 | #undef PL_OpSpace
|
|---|
| 143 | #define PL_OpSpace (*Perl_IOpSpace_ptr(aTHX))
|
|---|
| 144 | #undef PL_Proc
|
|---|
| 145 | #define PL_Proc (*Perl_IProc_ptr(aTHX))
|
|---|
| 146 | #undef PL_Sock
|
|---|
| 147 | #define PL_Sock (*Perl_ISock_ptr(aTHX))
|
|---|
| 148 | #undef PL_StdIO
|
|---|
| 149 | #define PL_StdIO (*Perl_IStdIO_ptr(aTHX))
|
|---|
| 150 | #undef PL_amagic_generation
|
|---|
| 151 | #define PL_amagic_generation (*Perl_Iamagic_generation_ptr(aTHX))
|
|---|
| 152 | #undef PL_an
|
|---|
| 153 | #define PL_an (*Perl_Ian_ptr(aTHX))
|
|---|
| 154 | #undef PL_argvgv
|
|---|
| 155 | #define PL_argvgv (*Perl_Iargvgv_ptr(aTHX))
|
|---|
| 156 | #undef PL_argvout_stack
|
|---|
| 157 | #define PL_argvout_stack (*Perl_Iargvout_stack_ptr(aTHX))
|
|---|
| 158 | #undef PL_argvoutgv
|
|---|
| 159 | #define PL_argvoutgv (*Perl_Iargvoutgv_ptr(aTHX))
|
|---|
| 160 | #undef PL_basetime
|
|---|
| 161 | #define PL_basetime (*Perl_Ibasetime_ptr(aTHX))
|
|---|
| 162 | #undef PL_beginav
|
|---|
| 163 | #define PL_beginav (*Perl_Ibeginav_ptr(aTHX))
|
|---|
| 164 | #undef PL_beginav_save
|
|---|
| 165 | #define PL_beginav_save (*Perl_Ibeginav_save_ptr(aTHX))
|
|---|
| 166 | #undef PL_bitcount
|
|---|
| 167 | #define PL_bitcount (*Perl_Ibitcount_ptr(aTHX))
|
|---|
| 168 | #undef PL_bufend
|
|---|
| 169 | #define PL_bufend (*Perl_Ibufend_ptr(aTHX))
|
|---|
| 170 | #undef PL_bufptr
|
|---|
| 171 | #define PL_bufptr (*Perl_Ibufptr_ptr(aTHX))
|
|---|
| 172 | #undef PL_checkav
|
|---|
| 173 | #define PL_checkav (*Perl_Icheckav_ptr(aTHX))
|
|---|
| 174 | #undef PL_checkav_save
|
|---|
| 175 | #define PL_checkav_save (*Perl_Icheckav_save_ptr(aTHX))
|
|---|
| 176 | #undef PL_clocktick
|
|---|
| 177 | #define PL_clocktick (*Perl_Iclocktick_ptr(aTHX))
|
|---|
| 178 | #undef PL_collation_ix
|
|---|
| 179 | #define PL_collation_ix (*Perl_Icollation_ix_ptr(aTHX))
|
|---|
| 180 | #undef PL_collation_name
|
|---|
| 181 | #define PL_collation_name (*Perl_Icollation_name_ptr(aTHX))
|
|---|
| 182 | #undef PL_collation_standard
|
|---|
| 183 | #define PL_collation_standard (*Perl_Icollation_standard_ptr(aTHX))
|
|---|
| 184 | #undef PL_collxfrm_base
|
|---|
| 185 | #define PL_collxfrm_base (*Perl_Icollxfrm_base_ptr(aTHX))
|
|---|
| 186 | #undef PL_collxfrm_mult
|
|---|
| 187 | #define PL_collxfrm_mult (*Perl_Icollxfrm_mult_ptr(aTHX))
|
|---|
| 188 | #undef PL_compcv
|
|---|
| 189 | #define PL_compcv (*Perl_Icompcv_ptr(aTHX))
|
|---|
| 190 | #undef PL_compiling
|
|---|
| 191 | #define PL_compiling (*Perl_Icompiling_ptr(aTHX))
|
|---|
| 192 | #undef PL_comppad_name
|
|---|
| 193 | #define PL_comppad_name (*Perl_Icomppad_name_ptr(aTHX))
|
|---|
| 194 | #undef PL_comppad_name_fill
|
|---|
| 195 | #define PL_comppad_name_fill (*Perl_Icomppad_name_fill_ptr(aTHX))
|
|---|
| 196 | #undef PL_comppad_name_floor
|
|---|
| 197 | #define PL_comppad_name_floor (*Perl_Icomppad_name_floor_ptr(aTHX))
|
|---|
| 198 | #undef PL_cop_seqmax
|
|---|
| 199 | #define PL_cop_seqmax (*Perl_Icop_seqmax_ptr(aTHX))
|
|---|
| 200 | #undef PL_copline
|
|---|
| 201 | #define PL_copline (*Perl_Icopline_ptr(aTHX))
|
|---|
| 202 | #undef PL_cred_mutex
|
|---|
| 203 | #define PL_cred_mutex (*Perl_Icred_mutex_ptr(aTHX))
|
|---|
| 204 | #undef PL_cryptseen
|
|---|
| 205 | #define PL_cryptseen (*Perl_Icryptseen_ptr(aTHX))
|
|---|
| 206 | #undef PL_cshlen
|
|---|
| 207 | #define PL_cshlen (*Perl_Icshlen_ptr(aTHX))
|
|---|
| 208 | #undef PL_cshname
|
|---|
| 209 | #define PL_cshname (*Perl_Icshname_ptr(aTHX))
|
|---|
| 210 | #undef PL_curcopdb
|
|---|
| 211 | #define PL_curcopdb (*Perl_Icurcopdb_ptr(aTHX))
|
|---|
| 212 | #undef PL_curstname
|
|---|
| 213 | #define PL_curstname (*Perl_Icurstname_ptr(aTHX))
|
|---|
| 214 | #undef PL_curthr
|
|---|
| 215 | #define PL_curthr (*Perl_Icurthr_ptr(aTHX))
|
|---|
| 216 | #undef PL_custom_op_descs
|
|---|
| 217 | #define PL_custom_op_descs (*Perl_Icustom_op_descs_ptr(aTHX))
|
|---|
| 218 | #undef PL_custom_op_names
|
|---|
| 219 | #define PL_custom_op_names (*Perl_Icustom_op_names_ptr(aTHX))
|
|---|
| 220 | #undef PL_dbargs
|
|---|
| 221 | #define PL_dbargs (*Perl_Idbargs_ptr(aTHX))
|
|---|
| 222 | #undef PL_debstash
|
|---|
| 223 | #define PL_debstash (*Perl_Idebstash_ptr(aTHX))
|
|---|
| 224 | #undef PL_debug
|
|---|
| 225 | #define PL_debug (*Perl_Idebug_ptr(aTHX))
|
|---|
| 226 | #undef PL_debug_pad
|
|---|
| 227 | #define PL_debug_pad (*Perl_Idebug_pad_ptr(aTHX))
|
|---|
| 228 | #undef PL_def_layerlist
|
|---|
| 229 | #define PL_def_layerlist (*Perl_Idef_layerlist_ptr(aTHX))
|
|---|
| 230 | #undef PL_defgv
|
|---|
| 231 | #define PL_defgv (*Perl_Idefgv_ptr(aTHX))
|
|---|
| 232 | #undef PL_diehook
|
|---|
| 233 | #define PL_diehook (*Perl_Idiehook_ptr(aTHX))
|
|---|
| 234 | #undef PL_doextract
|
|---|
| 235 | #define PL_doextract (*Perl_Idoextract_ptr(aTHX))
|
|---|
| 236 | #undef PL_doswitches
|
|---|
| 237 | #define PL_doswitches (*Perl_Idoswitches_ptr(aTHX))
|
|---|
| 238 | #undef PL_dowarn
|
|---|
| 239 | #define PL_dowarn (*Perl_Idowarn_ptr(aTHX))
|
|---|
| 240 | #undef PL_dumper_fd
|
|---|
| 241 | #define PL_dumper_fd (*Perl_Idumper_fd_ptr(aTHX))
|
|---|
| 242 | #undef PL_e_script
|
|---|
| 243 | #define PL_e_script (*Perl_Ie_script_ptr(aTHX))
|
|---|
| 244 | #undef PL_egid
|
|---|
| 245 | #define PL_egid (*Perl_Iegid_ptr(aTHX))
|
|---|
| 246 | #undef PL_encoding
|
|---|
| 247 | #define PL_encoding (*Perl_Iencoding_ptr(aTHX))
|
|---|
| 248 | #undef PL_endav
|
|---|
| 249 | #define PL_endav (*Perl_Iendav_ptr(aTHX))
|
|---|
| 250 | #undef PL_envgv
|
|---|
| 251 | #define PL_envgv (*Perl_Ienvgv_ptr(aTHX))
|
|---|
| 252 | #undef PL_errgv
|
|---|
| 253 | #define PL_errgv (*Perl_Ierrgv_ptr(aTHX))
|
|---|
| 254 | #undef PL_error_count
|
|---|
| 255 | #define PL_error_count (*Perl_Ierror_count_ptr(aTHX))
|
|---|
| 256 | #undef PL_euid
|
|---|
| 257 | #define PL_euid (*Perl_Ieuid_ptr(aTHX))
|
|---|
| 258 | #undef PL_eval_cond
|
|---|
| 259 | #define PL_eval_cond (*Perl_Ieval_cond_ptr(aTHX))
|
|---|
| 260 | #undef PL_eval_mutex
|
|---|
| 261 | #define PL_eval_mutex (*Perl_Ieval_mutex_ptr(aTHX))
|
|---|
| 262 | #undef PL_eval_owner
|
|---|
| 263 | #define PL_eval_owner (*Perl_Ieval_owner_ptr(aTHX))
|
|---|
| 264 | #undef PL_eval_root
|
|---|
| 265 | #define PL_eval_root (*Perl_Ieval_root_ptr(aTHX))
|
|---|
| 266 | #undef PL_eval_start
|
|---|
| 267 | #define PL_eval_start (*Perl_Ieval_start_ptr(aTHX))
|
|---|
| 268 | #undef PL_evalseq
|
|---|
| 269 | #define PL_evalseq (*Perl_Ievalseq_ptr(aTHX))
|
|---|
| 270 | #undef PL_exit_flags
|
|---|
| 271 | #define PL_exit_flags (*Perl_Iexit_flags_ptr(aTHX))
|
|---|
| 272 | #undef PL_exitlist
|
|---|
| 273 | #define PL_exitlist (*Perl_Iexitlist_ptr(aTHX))
|
|---|
| 274 | #undef PL_exitlistlen
|
|---|
| 275 | #define PL_exitlistlen (*Perl_Iexitlistlen_ptr(aTHX))
|
|---|
| 276 | #undef PL_expect
|
|---|
| 277 | #define PL_expect (*Perl_Iexpect_ptr(aTHX))
|
|---|
| 278 | #undef PL_fdpid
|
|---|
| 279 | #define PL_fdpid (*Perl_Ifdpid_ptr(aTHX))
|
|---|
| 280 | #undef PL_fdpid_mutex
|
|---|
| 281 | #define PL_fdpid_mutex (*Perl_Ifdpid_mutex_ptr(aTHX))
|
|---|
| 282 | #undef PL_fdscript
|
|---|
| 283 | #define PL_fdscript (*Perl_Ifdscript_ptr(aTHX))
|
|---|
| 284 | #undef PL_filemode
|
|---|
| 285 | #define PL_filemode (*Perl_Ifilemode_ptr(aTHX))
|
|---|
| 286 | #undef PL_forkprocess
|
|---|
| 287 | #define PL_forkprocess (*Perl_Iforkprocess_ptr(aTHX))
|
|---|
| 288 | #undef PL_formfeed
|
|---|
| 289 | #define PL_formfeed (*Perl_Iformfeed_ptr(aTHX))
|
|---|
| 290 | #undef PL_generation
|
|---|
| 291 | #define PL_generation (*Perl_Igeneration_ptr(aTHX))
|
|---|
| 292 | #undef PL_gensym
|
|---|
| 293 | #define PL_gensym (*Perl_Igensym_ptr(aTHX))
|
|---|
| 294 | #undef PL_gid
|
|---|
| 295 | #define PL_gid (*Perl_Igid_ptr(aTHX))
|
|---|
| 296 | #undef PL_glob_index
|
|---|
| 297 | #define PL_glob_index (*Perl_Iglob_index_ptr(aTHX))
|
|---|
| 298 | #undef PL_globalstash
|
|---|
| 299 | #define PL_globalstash (*Perl_Iglobalstash_ptr(aTHX))
|
|---|
| 300 | #undef PL_hash_seed
|
|---|
| 301 | #define PL_hash_seed (*Perl_Ihash_seed_ptr(aTHX))
|
|---|
| 302 | #undef PL_hash_seed_set
|
|---|
| 303 | #define PL_hash_seed_set (*Perl_Ihash_seed_set_ptr(aTHX))
|
|---|
| 304 | #undef PL_he_arenaroot
|
|---|
| 305 | #define PL_he_arenaroot (*Perl_Ihe_arenaroot_ptr(aTHX))
|
|---|
| 306 | #undef PL_he_root
|
|---|
| 307 | #define PL_he_root (*Perl_Ihe_root_ptr(aTHX))
|
|---|
| 308 | #undef PL_hintgv
|
|---|
| 309 | #define PL_hintgv (*Perl_Ihintgv_ptr(aTHX))
|
|---|
| 310 | #undef PL_hints
|
|---|
| 311 | #define PL_hints (*Perl_Ihints_ptr(aTHX))
|
|---|
| 312 | #undef PL_in_clean_all
|
|---|
| 313 | #define PL_in_clean_all (*Perl_Iin_clean_all_ptr(aTHX))
|
|---|
| 314 | #undef PL_in_clean_objs
|
|---|
| 315 | #define PL_in_clean_objs (*Perl_Iin_clean_objs_ptr(aTHX))
|
|---|
| 316 | #undef PL_in_load_module
|
|---|
| 317 | #define PL_in_load_module (*Perl_Iin_load_module_ptr(aTHX))
|
|---|
| 318 | #undef PL_in_my
|
|---|
| 319 | #define PL_in_my (*Perl_Iin_my_ptr(aTHX))
|
|---|
| 320 | #undef PL_in_my_stash
|
|---|
| 321 | #define PL_in_my_stash (*Perl_Iin_my_stash_ptr(aTHX))
|
|---|
| 322 | #undef PL_incgv
|
|---|
| 323 | #define PL_incgv (*Perl_Iincgv_ptr(aTHX))
|
|---|
| 324 | #undef PL_initav
|
|---|
| 325 | #define PL_initav (*Perl_Iinitav_ptr(aTHX))
|
|---|
| 326 | #undef PL_inplace
|
|---|
| 327 | #define PL_inplace (*Perl_Iinplace_ptr(aTHX))
|
|---|
| 328 | #undef PL_known_layers
|
|---|
| 329 | #define PL_known_layers (*Perl_Iknown_layers_ptr(aTHX))
|
|---|
| 330 | #undef PL_last_lop
|
|---|
| 331 | #define PL_last_lop (*Perl_Ilast_lop_ptr(aTHX))
|
|---|
| 332 | #undef PL_last_lop_op
|
|---|
| 333 | #define PL_last_lop_op (*Perl_Ilast_lop_op_ptr(aTHX))
|
|---|
| 334 | #undef PL_last_swash_hv
|
|---|
| 335 | #define PL_last_swash_hv (*Perl_Ilast_swash_hv_ptr(aTHX))
|
|---|
| 336 | #undef PL_last_swash_key
|
|---|
| 337 | #define PL_last_swash_key (*Perl_Ilast_swash_key_ptr(aTHX))
|
|---|
| 338 | #undef PL_last_swash_klen
|
|---|
| 339 | #define PL_last_swash_klen (*Perl_Ilast_swash_klen_ptr(aTHX))
|
|---|
| 340 | #undef PL_last_swash_slen
|
|---|
| 341 | #define PL_last_swash_slen (*Perl_Ilast_swash_slen_ptr(aTHX))
|
|---|
| 342 | #undef PL_last_swash_tmps
|
|---|
| 343 | #define PL_last_swash_tmps (*Perl_Ilast_swash_tmps_ptr(aTHX))
|
|---|
| 344 | #undef PL_last_uni
|
|---|
| 345 | #define PL_last_uni (*Perl_Ilast_uni_ptr(aTHX))
|
|---|
| 346 | #undef PL_lastfd
|
|---|
| 347 | #define PL_lastfd (*Perl_Ilastfd_ptr(aTHX))
|
|---|
| 348 | #undef PL_laststatval
|
|---|
| 349 | #define PL_laststatval (*Perl_Ilaststatval_ptr(aTHX))
|
|---|
| 350 | #undef PL_laststype
|
|---|
| 351 | #define PL_laststype (*Perl_Ilaststype_ptr(aTHX))
|
|---|
| 352 | #undef PL_lex_brackets
|
|---|
| 353 | #define PL_lex_brackets (*Perl_Ilex_brackets_ptr(aTHX))
|
|---|
| 354 | #undef PL_lex_brackstack
|
|---|
| 355 | #define PL_lex_brackstack (*Perl_Ilex_brackstack_ptr(aTHX))
|
|---|
| 356 | #undef PL_lex_casemods
|
|---|
| 357 | #define PL_lex_casemods (*Perl_Ilex_casemods_ptr(aTHX))
|
|---|
| 358 | #undef PL_lex_casestack
|
|---|
| 359 | #define PL_lex_casestack (*Perl_Ilex_casestack_ptr(aTHX))
|
|---|
| 360 | #undef PL_lex_defer
|
|---|
| 361 | #define PL_lex_defer (*Perl_Ilex_defer_ptr(aTHX))
|
|---|
| 362 | #undef PL_lex_dojoin
|
|---|
| 363 | #define PL_lex_dojoin (*Perl_Ilex_dojoin_ptr(aTHX))
|
|---|
| 364 | #undef PL_lex_expect
|
|---|
| 365 | #define PL_lex_expect (*Perl_Ilex_expect_ptr(aTHX))
|
|---|
| 366 | #undef PL_lex_formbrack
|
|---|
| 367 | #define PL_lex_formbrack (*Perl_Ilex_formbrack_ptr(aTHX))
|
|---|
| 368 | #undef PL_lex_inpat
|
|---|
| 369 | #define PL_lex_inpat (*Perl_Ilex_inpat_ptr(aTHX))
|
|---|
| 370 | #undef PL_lex_inwhat
|
|---|
| 371 | #define PL_lex_inwhat (*Perl_Ilex_inwhat_ptr(aTHX))
|
|---|
| 372 | #undef PL_lex_op
|
|---|
| 373 | #define PL_lex_op (*Perl_Ilex_op_ptr(aTHX))
|
|---|
| 374 | #undef PL_lex_repl
|
|---|
| 375 | #define PL_lex_repl (*Perl_Ilex_repl_ptr(aTHX))
|
|---|
| 376 | #undef PL_lex_starts
|
|---|
| 377 | #define PL_lex_starts (*Perl_Ilex_starts_ptr(aTHX))
|
|---|
| 378 | #undef PL_lex_state
|
|---|
| 379 | #define PL_lex_state (*Perl_Ilex_state_ptr(aTHX))
|
|---|
| 380 | #undef PL_lex_stuff
|
|---|
| 381 | #define PL_lex_stuff (*Perl_Ilex_stuff_ptr(aTHX))
|
|---|
| 382 | #undef PL_lineary
|
|---|
| 383 | #define PL_lineary (*Perl_Ilineary_ptr(aTHX))
|
|---|
| 384 | #undef PL_linestart
|
|---|
| 385 | #define PL_linestart (*Perl_Ilinestart_ptr(aTHX))
|
|---|
| 386 | #undef PL_linestr
|
|---|
| 387 | #define PL_linestr (*Perl_Ilinestr_ptr(aTHX))
|
|---|
| 388 | #undef PL_localpatches
|
|---|
| 389 | #define PL_localpatches (*Perl_Ilocalpatches_ptr(aTHX))
|
|---|
| 390 | #undef PL_lockhook
|
|---|
| 391 | #define PL_lockhook (*Perl_Ilockhook_ptr(aTHX))
|
|---|
| 392 | #undef PL_main_cv
|
|---|
| 393 | #define PL_main_cv (*Perl_Imain_cv_ptr(aTHX))
|
|---|
| 394 | #undef PL_main_root
|
|---|
| 395 | #define PL_main_root (*Perl_Imain_root_ptr(aTHX))
|
|---|
| 396 | #undef PL_main_start
|
|---|
| 397 | #define PL_main_start (*Perl_Imain_start_ptr(aTHX))
|
|---|
| 398 | #undef PL_max_intro_pending
|
|---|
| 399 | #define PL_max_intro_pending (*Perl_Imax_intro_pending_ptr(aTHX))
|
|---|
| 400 | #undef PL_maxo
|
|---|
| 401 | #define PL_maxo (*Perl_Imaxo_ptr(aTHX))
|
|---|
| 402 | #undef PL_maxsysfd
|
|---|
| 403 | #define PL_maxsysfd (*Perl_Imaxsysfd_ptr(aTHX))
|
|---|
| 404 | #undef PL_mess_sv
|
|---|
| 405 | #define PL_mess_sv (*Perl_Imess_sv_ptr(aTHX))
|
|---|
| 406 | #undef PL_min_intro_pending
|
|---|
| 407 | #define PL_min_intro_pending (*Perl_Imin_intro_pending_ptr(aTHX))
|
|---|
| 408 | #undef PL_minus_F
|
|---|
| 409 | #define PL_minus_F (*Perl_Iminus_F_ptr(aTHX))
|
|---|
| 410 | #undef PL_minus_a
|
|---|
| 411 | #define PL_minus_a (*Perl_Iminus_a_ptr(aTHX))
|
|---|
| 412 | #undef PL_minus_c
|
|---|
| 413 | #define PL_minus_c (*Perl_Iminus_c_ptr(aTHX))
|
|---|
| 414 | #undef PL_minus_l
|
|---|
| 415 | #define PL_minus_l (*Perl_Iminus_l_ptr(aTHX))
|
|---|
| 416 | #undef PL_minus_n
|
|---|
| 417 | #define PL_minus_n (*Perl_Iminus_n_ptr(aTHX))
|
|---|
| 418 | #undef PL_minus_p
|
|---|
| 419 | #define PL_minus_p (*Perl_Iminus_p_ptr(aTHX))
|
|---|
| 420 | #undef PL_modglobal
|
|---|
| 421 | #define PL_modglobal (*Perl_Imodglobal_ptr(aTHX))
|
|---|
| 422 | #undef PL_multi_close
|
|---|
| 423 | #define PL_multi_close (*Perl_Imulti_close_ptr(aTHX))
|
|---|
| 424 | #undef PL_multi_end
|
|---|
| 425 | #define PL_multi_end (*Perl_Imulti_end_ptr(aTHX))
|
|---|
| 426 | #undef PL_multi_open
|
|---|
| 427 | #define PL_multi_open (*Perl_Imulti_open_ptr(aTHX))
|
|---|
| 428 | #undef PL_multi_start
|
|---|
| 429 | #define PL_multi_start (*Perl_Imulti_start_ptr(aTHX))
|
|---|
| 430 | #undef PL_multiline
|
|---|
| 431 | #define PL_multiline (*Perl_Imultiline_ptr(aTHX))
|
|---|
| 432 | #undef PL_nexttoke
|
|---|
| 433 | #define PL_nexttoke (*Perl_Inexttoke_ptr(aTHX))
|
|---|
| 434 | #undef PL_nexttype
|
|---|
| 435 | #define PL_nexttype (*Perl_Inexttype_ptr(aTHX))
|
|---|
| 436 | #undef PL_nextval
|
|---|
| 437 | #define PL_nextval (*Perl_Inextval_ptr(aTHX))
|
|---|
| 438 | #undef PL_nice_chunk
|
|---|
| 439 | #define PL_nice_chunk (*Perl_Inice_chunk_ptr(aTHX))
|
|---|
| 440 | #undef PL_nice_chunk_size
|
|---|
| 441 | #define PL_nice_chunk_size (*Perl_Inice_chunk_size_ptr(aTHX))
|
|---|
| 442 | #undef PL_nomemok
|
|---|
| 443 | #define PL_nomemok (*Perl_Inomemok_ptr(aTHX))
|
|---|
| 444 | #undef PL_nthreads
|
|---|
| 445 | #define PL_nthreads (*Perl_Inthreads_ptr(aTHX))
|
|---|
| 446 | #undef PL_nthreads_cond
|
|---|
| 447 | #define PL_nthreads_cond (*Perl_Inthreads_cond_ptr(aTHX))
|
|---|
| 448 | #undef PL_nullstash
|
|---|
| 449 | #define PL_nullstash (*Perl_Inullstash_ptr(aTHX))
|
|---|
| 450 | #undef PL_numeric_compat1
|
|---|
| 451 | #define PL_numeric_compat1 (*Perl_Inumeric_compat1_ptr(aTHX))
|
|---|
| 452 | #undef PL_numeric_local
|
|---|
| 453 | #define PL_numeric_local (*Perl_Inumeric_local_ptr(aTHX))
|
|---|
| 454 | #undef PL_numeric_name
|
|---|
| 455 | #define PL_numeric_name (*Perl_Inumeric_name_ptr(aTHX))
|
|---|
| 456 | #undef PL_numeric_radix_sv
|
|---|
| 457 | #define PL_numeric_radix_sv (*Perl_Inumeric_radix_sv_ptr(aTHX))
|
|---|
| 458 | #undef PL_numeric_standard
|
|---|
| 459 | #define PL_numeric_standard (*Perl_Inumeric_standard_ptr(aTHX))
|
|---|
| 460 | #undef PL_ofmt
|
|---|
| 461 | #define PL_ofmt (*Perl_Iofmt_ptr(aTHX))
|
|---|
| 462 | #undef PL_oldbufptr
|
|---|
| 463 | #define PL_oldbufptr (*Perl_Ioldbufptr_ptr(aTHX))
|
|---|
| 464 | #undef PL_oldname
|
|---|
| 465 | #define PL_oldname (*Perl_Ioldname_ptr(aTHX))
|
|---|
| 466 | #undef PL_oldoldbufptr
|
|---|
| 467 | #define PL_oldoldbufptr (*Perl_Ioldoldbufptr_ptr(aTHX))
|
|---|
| 468 | #undef PL_op_mask
|
|---|
| 469 | #define PL_op_mask (*Perl_Iop_mask_ptr(aTHX))
|
|---|
| 470 | #undef PL_op_seqmax
|
|---|
| 471 | #define PL_op_seqmax (*Perl_Iop_seqmax_ptr(aTHX))
|
|---|
| 472 | #undef PL_origalen
|
|---|
| 473 | #define PL_origalen (*Perl_Iorigalen_ptr(aTHX))
|
|---|
| 474 | #undef PL_origargc
|
|---|
| 475 | #define PL_origargc (*Perl_Iorigargc_ptr(aTHX))
|
|---|
| 476 | #undef PL_origargv
|
|---|
| 477 | #define PL_origargv (*Perl_Iorigargv_ptr(aTHX))
|
|---|
| 478 | #undef PL_origenviron
|
|---|
| 479 | #define PL_origenviron (*Perl_Iorigenviron_ptr(aTHX))
|
|---|
| 480 | #undef PL_origfilename
|
|---|
| 481 | #define PL_origfilename (*Perl_Iorigfilename_ptr(aTHX))
|
|---|
| 482 | #undef PL_ors_sv
|
|---|
| 483 | #define PL_ors_sv (*Perl_Iors_sv_ptr(aTHX))
|
|---|
| 484 | #undef PL_osname
|
|---|
| 485 | #define PL_osname (*Perl_Iosname_ptr(aTHX))
|
|---|
| 486 | #undef PL_pad_reset_pending
|
|---|
| 487 | #define PL_pad_reset_pending (*Perl_Ipad_reset_pending_ptr(aTHX))
|
|---|
| 488 | #undef PL_padix
|
|---|
| 489 | #define PL_padix (*Perl_Ipadix_ptr(aTHX))
|
|---|
| 490 | #undef PL_padix_floor
|
|---|
| 491 | #define PL_padix_floor (*Perl_Ipadix_floor_ptr(aTHX))
|
|---|
| 492 | #undef PL_patchlevel
|
|---|
| 493 | #define PL_patchlevel (*Perl_Ipatchlevel_ptr(aTHX))
|
|---|
| 494 | #undef PL_pending_ident
|
|---|
| 495 | #define PL_pending_ident (*Perl_Ipending_ident_ptr(aTHX))
|
|---|
| 496 | #undef PL_perl_destruct_level
|
|---|
| 497 | #define PL_perl_destruct_level (*Perl_Iperl_destruct_level_ptr(aTHX))
|
|---|
| 498 | #undef PL_perldb
|
|---|
| 499 | #define PL_perldb (*Perl_Iperldb_ptr(aTHX))
|
|---|
| 500 | #undef PL_perlio
|
|---|
| 501 | #define PL_perlio (*Perl_Iperlio_ptr(aTHX))
|
|---|
| 502 | #undef PL_pidstatus
|
|---|
| 503 | #define PL_pidstatus (*Perl_Ipidstatus_ptr(aTHX))
|
|---|
| 504 | #undef PL_ppid
|
|---|
| 505 | #define PL_ppid (*Perl_Ippid_ptr(aTHX))
|
|---|
| 506 | #undef PL_preambleav
|
|---|
| 507 | #define PL_preambleav (*Perl_Ipreambleav_ptr(aTHX))
|
|---|
| 508 | #undef PL_preambled
|
|---|
| 509 | #define PL_preambled (*Perl_Ipreambled_ptr(aTHX))
|
|---|
| 510 | #undef PL_preprocess
|
|---|
| 511 | #define PL_preprocess (*Perl_Ipreprocess_ptr(aTHX))
|
|---|
| 512 | #undef PL_profiledata
|
|---|
| 513 | #define PL_profiledata (*Perl_Iprofiledata_ptr(aTHX))
|
|---|
| 514 | #undef PL_psig_name
|
|---|
| 515 | #define PL_psig_name (*Perl_Ipsig_name_ptr(aTHX))
|
|---|
| 516 | #undef PL_psig_pend
|
|---|
| 517 | #define PL_psig_pend (*Perl_Ipsig_pend_ptr(aTHX))
|
|---|
| 518 | #undef PL_psig_ptr
|
|---|
| 519 | #define PL_psig_ptr (*Perl_Ipsig_ptr_ptr(aTHX))
|
|---|
| 520 | #undef PL_pte_arenaroot
|
|---|
| 521 | #define PL_pte_arenaroot (*Perl_Ipte_arenaroot_ptr(aTHX))
|
|---|
| 522 | #undef PL_pte_root
|
|---|
| 523 | #define PL_pte_root (*Perl_Ipte_root_ptr(aTHX))
|
|---|
| 524 | #undef PL_ptr_table
|
|---|
| 525 | #define PL_ptr_table (*Perl_Iptr_table_ptr(aTHX))
|
|---|
| 526 | #undef PL_reentrant_buffer
|
|---|
| 527 | #define PL_reentrant_buffer (*Perl_Ireentrant_buffer_ptr(aTHX))
|
|---|
| 528 | #undef PL_reentrant_retint
|
|---|
| 529 | #define PL_reentrant_retint (*Perl_Ireentrant_retint_ptr(aTHX))
|
|---|
| 530 | #undef PL_regex_pad
|
|---|
| 531 | #define PL_regex_pad (*Perl_Iregex_pad_ptr(aTHX))
|
|---|
| 532 | #undef PL_regex_padav
|
|---|
| 533 | #define PL_regex_padav (*Perl_Iregex_padav_ptr(aTHX))
|
|---|
| 534 | #undef PL_rehash_seed
|
|---|
| 535 | #define PL_rehash_seed (*Perl_Irehash_seed_ptr(aTHX))
|
|---|
| 536 | #undef PL_rehash_seed_set
|
|---|
| 537 | #define PL_rehash_seed_set (*Perl_Irehash_seed_set_ptr(aTHX))
|
|---|
| 538 | #undef PL_replgv
|
|---|
| 539 | #define PL_replgv (*Perl_Ireplgv_ptr(aTHX))
|
|---|
| 540 | #undef PL_rsfp
|
|---|
| 541 | #define PL_rsfp (*Perl_Irsfp_ptr(aTHX))
|
|---|
|
|---|