summaryrefslogtreecommitdiff
path: root/malloc.c
diff options
context:
space:
mode:
authorIlya Zakharevich <ilya@math.ohio-state.edu>1997-06-16 11:17:08 +1200
committerTim Bunce <Tim.Bunce@ig.co.uk>1997-08-07 00:00:00 +1200
commit3562ef9bd2cdbf90129e36ac9d1818321a4fe8c0 (patch)
tree7e8d236194705ad6575f2b5eb40069e5e776612b /malloc.c
parent6d07e5e939afa671a7159961283be7a3f91c8c79 (diff)
downloadperl-3562ef9bd2cdbf90129e36ac9d1818321a4fe8c0.tar.gz
Enable PERL_DEBUG_MSTATS without -DDEBUGGING_MSTATS
Subject: [PATCH]: reduced malloc patch Since this problems arise again and again on the list, here is the reduced malloc patch. It corrects the following problems: a) several off-by-one in av_make(); b) Growing TMP on conversion number=>string; c) Uncompatibility of -DDEBUGGING_MSTATS and system malloc; (The first two problems are fixed by malloc_jumbo_2 as well, but the 2 chunks for "c" - in perl.c - were forgotten in that patch). Enjoy, p5p-msgid: 199707150829.EAA01291@monk.mps.ohio-state.edu
Diffstat (limited to 'malloc.c')
-rw-r--r--malloc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/malloc.c b/malloc.c
index 3aeb08846c..c84db66e31 100644
--- a/malloc.c
+++ b/malloc.c
@@ -2,6 +2,10 @@
*
*/
+#if defined(PERL_CORE) && !defined(DEBUGGING_MSTATS)
+# define DEBUGGING_MSTATS
+#endif
+
#ifndef lint
# if defined(DEBUGGING) && !defined(NO_RCHECK)
# define RCHECK