diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-03-21 19:02:50 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-03-21 19:02:50 +0000 |
commit | 4724db3847889abfdd323ce94d191e651f763036 (patch) | |
tree | 41a68cd287a425a33aa8fe25f5cf41eb2cb38f56 /perl.c | |
parent | a93c8a9e4a51d34ca994257e736b80ca04ec6f9e (diff) | |
download | perl-4724db3847889abfdd323ce94d191e651f763036.tar.gz |
Add some PERL_MEM* defines to the -V output that were missing.
"Correct" the whitespace on the only inconsistent #ifdef/#endif
p4raw-id: //depot/perl@30667
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 22 |
1 files changed, 20 insertions, 2 deletions
@@ -1857,6 +1857,21 @@ S_parse_body(pTHX_ char **env, XSINIT_t xsinit) # ifdef PERL_MALLOC_WRAP " PERL_MALLOC_WRAP" # endif +# ifdef PERL_MEM_LOG + " PERL_MEM_LOG" +# endif +# ifdef PERL_MEM_LOG_ENV + " PERL_MEM_LOG_ENV" +# endif +# ifdef PERL_MEM_LOG_ENV_FD + " PERL_MEM_LOG_ENV_FD" +# endif +# ifdef PERL_MEM_LOG_STDERR + " PERL_MEM_LOG_STDERR" +# endif +# ifdef PERL_MEM_LOG_TIMESTAMP + " PERL_MEM_LOG_TIMESTAMP" +# endif # ifdef PERL_NEED_APPCTX " PERL_NEED_APPCTX" # endif @@ -1866,15 +1881,18 @@ S_parse_body(pTHX_ char **env, XSINIT_t xsinit) # ifdef PERL_OLD_COPY_ON_WRITE " PERL_OLD_COPY_ON_WRITE" # endif +# ifdef PERL_POISON + " PERL_POISON" +# endif # ifdef PERL_TRACK_MEMPOOL " PERL_TRACK_MEMPOOL" # endif # ifdef PERL_USE_SAFE_PUTENV " PERL_USE_SAFE_PUTENV" # endif -#ifdef PERL_USES_PL_PIDSTATUS +# ifdef PERL_USES_PL_PIDSTATUS " PERL_USES_PL_PIDSTATUS" -#endif +# endif # ifdef PL_OP_SLAB_ALLOC " PL_OP_SLAB_ALLOC" # endif |