diff options
author | 2002-03-09 01:11:11 +0000 | |
---|---|---|
committer | 2002-03-09 01:11:11 +0000 | |
commit | 92037e5e98b07dbf931de479236a0acf174534d0 (patch) | |
tree | ccb3b93c1aae4dfba224bf932040f43cb7fd620b | |
parent | Remove the code which reenables interrupts in these interrupt controllers, (diff) | |
download | wireguard-openbsd-92037e5e98b07dbf931de479236a0acf174534d0.tar.xz wireguard-openbsd-92037e5e98b07dbf931de479236a0acf174534d0.zip |
Fix POOL_DIAGNOSTIC
From Kamil Andrusz <wizz@mniam.net> pr/2455
-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__) |