From 780911f210a408f6be3a3db4c8109f17c3d283af Mon Sep 17 00:00:00 2001 From: phk Date: Mon, 10 Mar 2003 20:24:54 +0000 Subject: PHCC[1]: I had commented the #ifdef INVARIANTS checks out to make sure I ran this code in all kernels and forgot to comment the #ifdefs back in before I committed. Spotted by: bmilekic [1] PHCC = Pointy Hat Correction Commit --- sys/kern/kern_malloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/kern/kern_malloc.c') diff --git a/sys/kern/kern_malloc.c b/sys/kern/kern_malloc.c index 978fc6a..34f791a 100644 --- a/sys/kern/kern_malloc.c +++ b/sys/kern/kern_malloc.c @@ -167,7 +167,7 @@ malloc(size, type, flags) #endif register struct malloc_type *ksp = type; -/* #ifdef INVARIANTS */ +#ifdef INVARIANTS /* * To make sure that WAITOK or NOWAIT is set, but not more than * one, and check against the API botches that are common. @@ -183,7 +183,7 @@ malloc(size, type, flags) once++; } } -/* #endif */ +#endif #if 0 if (size == 0) Debugger("zero size malloc"); -- cgit v1.1