summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-02-27 15:08:06 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-02-27 15:08:06 +0000
commitac6bedeafc71cb65cb2bb8b5b5b55f9049c21101 (patch)
tree230d4c7a343f250b506658bf941a95a823dc6791 /perl.h
parent1f6995f0a0a7af0be70f8cfe4c6900a6717c7a66 (diff)
downloadperl-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.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/perl.h b/perl.h
index cc451b60fb..2fffc93b5b 100644
--- a/perl.h
+++ b/perl.h
@@ -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;