diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-05-03 14:45:32 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-05-03 14:45:32 +0000 |
commit | b37a2be91b1cd1281f2d8e07198077524e9e18c5 (patch) | |
tree | c6b78f9f5a0bd9dd7d18e1062de31f0d29a684ab /thrdvar.h | |
parent | dd0f7162a7fbc454dca3f1a1c117123150d54b79 (diff) | |
download | perl-b37a2be91b1cd1281f2d8e07198077524e9e18c5.tar.gz |
Move PL_delayedisa into a better spot in the interpreter structure.
p4raw-id: //depot/perl@31127
Diffstat (limited to 'thrdvar.h')
-rw-r--r-- | thrdvar.h | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -174,6 +174,8 @@ PERLVAR(Tregmatch_state, regmatch_state *) PERLVARI(Tdumpindent, U16, 4) /* # of blanks per dump indentation level */ +PERLVARI(Tdelayedisa, HV*, NULL) /* stash for PL_delaymagic for magic_setisa */ + /* Put anything new that is pointer aligned here. */ PERLVAR(Tdelaymagic, U16) /* ($<,$>) = ... */ @@ -182,8 +184,10 @@ PERLVAR(Tcolorset, bool) /* from regcomp.c */ PERLVARI(Tdirty, bool, FALSE) /* in the middle of tearing things down? */ PERLVAR(Tin_eval, VOL U8) /* trap "fatal" errors? */ PERLVAR(Ttainted, bool) /* using variables controlled by $< */ -PERLVARI(Tdelayedisa, HV*, NULL) /* stash for PL_delaymagic for magic_setisa */ -/* For historical reasons this file is followed by intrpvar.h in the interpeter - struct. As this file currently ends with 7 bytes of variables, intrpvar.h - starts with one single U8, to avoid structure padding space wastage. */ +/* Put new things UP THERE ^^^ */ + +/* For historical reasons this file is followed by intrpvar.h in the + interpreter struct. As this file currently ends with 7 bytes of variables, + intrpvar.h starts with one single U8, to avoid structure padding space + wastage. */ |