summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2009-07-30 18:19:27 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2009-07-30 18:19:27 +0000
commit0c57c3a99cabb75fea4976305abc38e2d7ebc93b (patch)
tree64e7ff1fb1d2fc82582bf9e927d69935a9e686e3 /sys/kern
parentca4f8e77c7a1758fe97d4bc412f04fcd2cc0e64f (diff)
We enable POOL_DEBUG (except in a release)
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/subr_pool.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_pool.c b/sys/kern/subr_pool.c
index 4b954dc91aa..c7b2d814431 100644
--- a/sys/kern/subr_pool.c
+++ b/sys/kern/subr_pool.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: subr_pool.c,v 1.85 2009/06/24 11:23:33 deraadt Exp $ */
+/* $OpenBSD: subr_pool.c,v 1.86 2009/07/30 18:19:26 deraadt Exp $ */
/* $NetBSD: subr_pool.c,v 1.61 2001/09/26 07:14:56 chs Exp $ */
/*-
@@ -56,7 +56,7 @@
* the allocated pages themselves (for small pool items) or taken from
* an internal pool of page headers (`phpool').
*/
-/* #define POOL_DEBUG */
+#define POOL_DEBUG
/* List of all pools */
TAILQ_HEAD(,pool) pool_head = TAILQ_HEAD_INITIALIZER(pool_head);