summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2009-06-24 11:23:34 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2009-06-24 11:23:34 +0000
commita4815e1bdfb134e6987f75af9acf08930d34aa19 (patch)
tree7e703cfd48bd8d26ce62cb580f65239c85c00a6a /sys/kern
parent2e55d12d2d0d0545e0de51990092ce1d4ac716ee (diff)
turn off POOL_DEBUG as we go into release; pointed out by mpf
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 aa0d1213a81..4b954dc91aa 100644
--- a/sys/kern/subr_pool.c
+++ b/sys/kern/subr_pool.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: subr_pool.c,v 1.84 2009/06/12 14:56:21 oga Exp $ */
+/* $OpenBSD: subr_pool.c,v 1.85 2009/06/24 11:23:33 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);