diff options
author | Father Chrysostomos <sprout@cpan.org> | 2016-08-14 01:12:19 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2016-08-14 11:29:10 -0700 |
commit | e897f2d79346a5c1b43d0948c1c0720cbb220cfa (patch) | |
tree | 409428655c1d745ff54e025c7bce4fa3251b97aa /intrpvar.h | |
parent | 8d89205aa6324e7dc469ff80b73d94181c926654 (diff) | |
download | perl-e897f2d79346a5c1b43d0948c1c0720cbb220cfa.tar.gz |
Re-order intrp struct
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/intrpvar.h b/intrpvar.h index dd9159e6af..3f43fd9c63 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -543,7 +543,7 @@ PERLVARA(I, body_roots, PERL_ARENA_ROOTS_SIZE, void*) /* array of body roots */ PERLVAR(I, debug, VOL U32) /* flags given to -D switch */ - /* 32-BIT HOLE !!! */ +PERLVARI(I, padlist_generation, U32, 1) /* id to identify padlist clones */ PERLVARI(I, runops, runops_proc_t, RUNOPS_DEFAULT) @@ -762,8 +762,6 @@ PERLVAR(I, debug_pad, struct perl_debug_pad) /* always needed because of the re /* Hook for File::Glob */ PERLVARI(I, globhook, globhook_t, NULL) -PERLVARI(I, padlist_generation, U32, 1) /* id to identify padlist clones */ - /* The last unconditional member of the interpreter structure when 5.18.0 was released. The offset of the end of this is baked into a global variable in any shared perl library which will allow a sanity test in future perl |