diff options
author | Craig A. Berry <craigberry@mac.com> | 2007-11-11 22:45:46 +0000 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2007-11-11 22:45:46 +0000 |
commit | 01523419c4975d14e4e5f85345c082d2525fd1a2 (patch) | |
tree | 75441468fd1b544fa34bf2d32636ebd0959e622d /perlvars.h | |
parent | fe98d82b2e4171a609025e7b159d7945efe2900c (diff) | |
download | perl-01523419c4975d14e4e5f85345c082d2525fd1a2.tar.gz |
Following 32238, change "interpreter_size" to "interp_size" in the new
global symbols to keep overall symbol length within 31 characters,
which is what the VMS C compiler with default flags can handle.
p4raw-id: //depot/perl@32275
Diffstat (limited to 'perlvars.h')
-rw-r--r-- | perlvars.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perlvars.h b/perlvars.h index de3c63b005..49f4d5e31d 100644 --- a/perlvars.h +++ b/perlvars.h @@ -175,7 +175,7 @@ PERLVARI(Gsubversion, U8, PERL_SUBVERSION) sizeof(((struct interpreter*)0)->member) /* These might be useful. */ -PERLVARI(Ginterpreter_size, U16, sizeof(struct interpreter)) +PERLVARI(Ginterp_size, U16, sizeof(struct interpreter)) #if defined(PERL_GLOBAL_STRUCT) PERLVARI(Gglobal_struct_size, U16, sizeof(struct perl_vars)) #endif @@ -183,6 +183,6 @@ PERLVARI(Gglobal_struct_size, U16, sizeof(struct perl_vars)) /* This will be useful for subsequent releases, because this has to be the same in your libperl as in main(), else you have a mismatch and must abort. */ -PERLVARI(Ginterpreter_size_5_10_0, U16, +PERLVARI(Ginterp_size_5_10_0, U16, PERL_INTERPRETER_SIZE_UPTO_MEMBER(PERL_LAST_5_10_0_INTERP_MEMBER)) #endif |