summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_pool.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2009-07-30 18:19:26 +0000
committerderaadt <deraadt@openbsd.org>2009-07-30 18:19:26 +0000
commit10e6073ab88ddce0cf66c34f1c2a2b30cd3188b6 (patch)
tree05db93a1a5070a00279037c6aca48d1a23bd79ac /sys/kern/subr_pool.c
parentXr cac(4) && mpi(4); ok marco (diff)
downloadwireguard-openbsd-10e6073ab88ddce0cf66c34f1c2a2b30cd3188b6.tar.xz
wireguard-openbsd-10e6073ab88ddce0cf66c34f1c2a2b30cd3188b6.zip
We enable POOL_DEBUG (except in a release)
Diffstat (limited to 'sys/kern/subr_pool.c')
-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);