diff options
author | jake <jake@FreeBSD.org> | 2000-05-23 20:41:01 +0000 |
---|---|---|
committer | jake <jake@FreeBSD.org> | 2000-05-23 20:41:01 +0000 |
commit | d93fbc99166053b75c2eeb69b5cb603cfaf79ec0 (patch) | |
tree | a4f130be4544ce7cfe4afa8c93f996b871433cb8 /include | |
parent | e814d2a0db522b0f163eef55a56d05aa226951f3 (diff) | |
download | FreeBSD-src-d93fbc99166053b75c2eeb69b5cb603cfaf79ec0.zip FreeBSD-src-d93fbc99166053b75c2eeb69b5cb603cfaf79ec0.tar.gz |
Change the way that the queue(3) structures are declared; don't assume that
the type argument to *_HEAD and *_ENTRY is a struct.
Suggested by: phk
Reviewed by: phk
Approved by: mdodd
Diffstat (limited to 'include')
-rw-r--r-- | include/mpool.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/mpool.h b/include/mpool.h index 9e3ebeb..8838fbd 100644 --- a/include/mpool.h +++ b/include/mpool.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)mpool.h 8.2 (Berkeley) 7/14/94 + * $FreeBSD$ */ #ifndef _MPOOL_H_ @@ -50,8 +51,8 @@ /* The BKT structures are the elements of the queues. */ typedef struct _bkt { - CIRCLEQ_ENTRY(_bkt) hq; /* hash queue */ - CIRCLEQ_ENTRY(_bkt) q; /* lru queue */ + CIRCLEQ_ENTRY(struct _bkt) hq; /* hash queue */ + CIRCLEQ_ENTRY(struct _bkt) q; /* lru queue */ void *page; /* page */ pgno_t pgno; /* page number */ @@ -61,9 +62,9 @@ typedef struct _bkt { } BKT; typedef struct MPOOL { - CIRCLEQ_HEAD(_lqh, _bkt) lqh; /* lru queue head */ + CIRCLEQ_HEAD(_lqh, struct _bkt) lqh; /* lru queue head */ /* hash queue array */ - CIRCLEQ_HEAD(_hqh, _bkt) hqh[HASHSIZE]; + CIRCLEQ_HEAD(_hqh, struct _bkt) hqh[HASHSIZE]; pgno_t curcache; /* current number of cached pages */ pgno_t maxcache; /* max number of cached pages */ pgno_t npages; /* number of pages in the file */ |