From 2845a5b5418b09c0de782a2383788f97a9683a35 Mon Sep 17 00:00:00 2001 From: phk Date: Sun, 9 Jul 2000 13:10:18 +0000 Subject: Turn malloc options "AJ" on by default. These will be turned off again as we approach 5.0-RELEASE. If you benchmark things, make sure to ln -sf j /etc/malloc.conf to see "true" performance. --- lib/libc/stdlib/malloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libc/stdlib/malloc.c') diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c index 4121718..3b631e8 100644 --- a/lib/libc/stdlib/malloc.c +++ b/lib/libc/stdlib/malloc.c @@ -205,7 +205,7 @@ static unsigned malloc_ninfo; static struct pgfree free_list; /* Abort(), user doesn't handle problems. */ -static int malloc_abort; +static int malloc_abort = 1; /* Are we trying to die ? */ static int suicide; @@ -226,7 +226,7 @@ static int malloc_sysv; static int malloc_zero; /* junk fill ? */ -static int malloc_junk; +static int malloc_junk = 1; #ifdef HAS_UTRACE -- cgit v1.1