diff options
author | 2009-06-04 09:58:40 +0000 | |
---|---|---|
committer | 2009-06-04 09:58:40 +0000 | |
commit | fea0078ba5d0685fe846b958031134f39a117432 (patch) | |
tree | cf4c56ddf0b0a14ac43f5a19310df180fd47bddb /sys/kern/subr_pool.c | |
parent | in case a handling a +groupname:*:: entry fails due to lack of memory, (diff) | |
download | wireguard-openbsd-fea0078ba5d0685fe846b958031134f39a117432.tar.xz wireguard-openbsd-fea0078ba5d0685fe846b958031134f39a117432.zip |
enable POOL_DEBUG again just for the hackathon.
slackers now get more bugs to fix, yay!
discussed with deraadt@.
Diffstat (limited to 'sys/kern/subr_pool.c')
-rw-r--r-- | sys/kern/subr_pool.c | 3 |
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); |