diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-27 15:08:06 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-27 15:08:06 +0000 |
commit | ac6bedeafc71cb65cb2bb8b5b5b55f9049c21101 (patch) | |
tree | 230d4c7a343f250b506658bf941a95a823dc6791 /perl.h | |
parent | 1f6995f0a0a7af0be70f8cfe4c6900a6717c7a66 (diff) | |
download | perl-ac6bedeafc71cb65cb2bb8b5b5b55f9049c21101.tar.gz |
Avoid PL_OpPtr et al getting unnecessarily (when not used)
into perl.exp in AIX.
p4raw-id: //depot/perl@14894
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -42,6 +42,10 @@ /* See L<perlguts/"The Perl API"> for detailed notes on * PERL_IMPLICIT_CONTEXT and PERL_IMPLICIT_SYS */ +/* Note that from here --> to <-- the same logic is + * repeated in makedef.pl, so be certain to update + * both places when editing. */ + #ifdef PERL_IMPLICIT_SYS /* PERL_IMPLICIT_SYS implies PerlMemShared != PerlMem so use slab allocator to avoid lots of MUTEX overhead @@ -69,6 +73,8 @@ # endif #endif +/* <--- here ends the logic shared by perl.h and makedef.pl */ + #ifdef PERL_IMPLICIT_CONTEXT # ifdef USE_5005THREADS struct perl_thread; |