summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorOwain Ainsworth <oga@cvs.openbsd.org>2009-06-04 09:58:41 +0000
committerOwain Ainsworth <oga@cvs.openbsd.org>2009-06-04 09:58:41 +0000
commita8508f518eb51394fbcfecb52ce85fc508c095be (patch)
tree4e0a6274cdc783a05cd6586d7adbc77c3124a3f3 /sys
parent6df8e363ea10bab00e21db2c40f213fbdb3fc55e (diff)
enable POOL_DEBUG again just for the hackathon.
slackers now get more bugs to fix, yay! discussed with deraadt@.
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/subr_pool.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/subr_pool.c b/sys/kern/subr_pool.c
index de08f385b4b..c5986d40d69 100644
--- a/sys/kern/subr_pool.c
+++ b/sys/kern/subr_pool.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: subr_pool.c,v 1.80 2009/05/31 17:11:14 miod Exp $ */
+/* $OpenBSD: subr_pool.c,v 1.81 2009/06/04 09:58:40 oga Exp $ */
/* $NetBSD: subr_pool.c,v 1.61 2001/09/26 07:14:56 chs Exp $ */
/*-
@@ -56,6 +56,7 @@
* the allocated pages themselves (for small pool items) or taken from
* an internal pool of page headers (`phpool').
*/
+#define POOL_DEBUG
/* List of all pools */
TAILQ_HEAD(,pool) pool_head = TAILQ_HEAD_INITIALIZER(pool_head);