diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-09-08 11:42:05 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-09-08 11:42:05 +0100 |
commit | ed29bbbac44430b129e491f57e8ad177784c878e (patch) | |
tree | 9dc7149a03e1daa88a4c903a5e0e8a950bc94393 /intrpvar.h | |
parent | 9a87bd09eea1d037e82e99f6ece528e39e7fe0e6 (diff) | |
download | perl-ed29bbbac44430b129e491f57e8ad177784c878e.tar.gz |
Reorder interpreter struct to remove alignment hole created by 9a87bd09eea1d037
nice_chunk_size was U32, and had been paired with another 32 bit value to
ensure that all 64 bit quantities were naturally 64 bit aligned. There already
was a 32 bit "hole" elsewhere - reorder the two unpaired 32 bit values next to
each other.
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/intrpvar.h b/intrpvar.h index 749be42395..ffe59c84f1 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -445,7 +445,7 @@ PERLVAR(Isighandlerp, Sighandler_t) PERLVARA(Ibody_roots, PERL_ARENA_ROOTS_SIZE, void*) /* array of body roots */ -/* Space for an int */ +PERLVAR(Iunicode, U32) /* Unicode features: $ENV{PERL_UNICODE} or -C */ PERLVARI(Imaxo, int, MAXO) /* maximum number of ops */ @@ -634,10 +634,6 @@ PERLVARI(Iunitcheckav_save, AV*, NULL) /* save UNITCHECK{}s when compiling */ PERLVARI(Iclocktick, long, 0) /* this many times() ticks in a second */ -/* Space for an int */ - -PERLVAR(Iunicode, U32) /* Unicode features: $ENV{PERL_UNICODE} or -C */ - PERLVAR(Isignals, U32) /* Using which pre-5.8 signals */ PERLVAR(Ireentrant_retint, int) /* Integer return value from reentrant functions */ |