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.
This commit is contained in:
Poul-Henning Kamp 2000-07-09 13:10:18 +00:00
parent b474779f46
commit 832505d0c9
1 changed files with 2 additions and 2 deletions

View File

@ -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