Jason's last fix broke builds with POOL_DIAGNOSTIC (the kernel didn't link

as pool_get was never defined).  Fix that.
This commit is contained in:
rafal 2001-06-06 22:00:17 +00:00
parent f88f49f432
commit 8f6b092685
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pool.h,v 1.26 2001/06/05 18:51:03 thorpej Exp $ */
/* $NetBSD: pool.h,v 1.27 2001/06/06 22:00:17 rafal Exp $ */
/*-
* Copyright (c) 1997, 1998, 1999, 2000 The NetBSD Foundation, Inc.
@ -44,6 +44,10 @@
#define __POOL_EXPOSE
#endif
#if defined(_KERNEL_OPT)
#include "opt_pool.h"
#endif
#ifdef __POOL_EXPOSE
#include <sys/lock.h>
#include <sys/queue.h>