diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2000-06-07 08:29:35 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2000-06-07 08:29:35 +0000 |
commit | fe990353b5bb0e22afb1c4dc7dcc49bf1e4f1458 (patch) | |
tree | 46bb2e93f51a45ea84d3b5180f4e62af89a890a5 | |
parent | e58700ab7a8ba5a0f49214c4890532c49fbdb870 (diff) |
Default type and size to -1.
-rw-r--r-- | sys/kern/kern_malloc_debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_malloc_debug.c b/sys/kern/kern_malloc_debug.c index 380e522e6b6..d0b2e788e68 100644 --- a/sys/kern/kern_malloc_debug.c +++ b/sys/kern/kern_malloc_debug.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_malloc_debug.c,v 1.2 2000/06/06 20:24:51 art Exp $ */ +/* $OpenBSD: kern_malloc_debug.c,v 1.3 2000/06/07 08:29:34 art Exp $ */ /* * Copyright (c) 1999, 2000 Artur Grabowski <art@openbsd.org> @@ -76,8 +76,8 @@ * if any memory chunks of this type are used. It's ok to change the size * in runtime. */ -int malloc_deb_type = M_MBUF; -int malloc_deb_size = 128; +int malloc_deb_type = -1; +int malloc_deb_size = -1; /* * MALLOC_DEBUG_CHUNKS is the number of memory chunks we require on the |