diff options
-rw-r--r-- | sys/sys/pool.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/pool.h b/sys/sys/pool.h index bf1a1a46023..3772f68cdb2 100644 --- a/sys/sys/pool.h +++ b/sys/sys/pool.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pool.h,v 1.11 2002/02/25 04:53:16 dhartmei Exp $ */ +/* $OpenBSD: pool.h,v 1.12 2002/03/09 01:11:11 art Exp $ */ /* $NetBSD: pool.h,v 1.27 2001/06/06 22:00:17 rafal Exp $ */ /*- @@ -215,7 +215,7 @@ int pool_reclaim(struct pool *); */ void *_pool_get(struct pool *, int, const char *, long); void _pool_put(struct pool *, void *, const char *, long); -void _pool_reclaim(struct pool *, const char *, long); +int _pool_reclaim(struct pool *, const char *, long); #define pool_get(h, f) _pool_get((h), (f), __FILE__, __LINE__) #define pool_put(h, v) _pool_put((h), (v), __FILE__, __LINE__) #define pool_reclaim(h) _pool_reclaim((h), __FILE__, __LINE__) |