Pristine Ack-5.5
[Ack-5.5.git] / mach / proto / top / queue.h
1 /* $Id: queue.h,v 1.5 1994/06/24 13:29:02 ceriel Exp $ */
2 /*
3  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
4  * See the copyright notice in the ACK home directory, in the file "Copyright".
5  */
6 typedef struct queue_t *queue;
7
8 struct queue_t {
9         instr_p head;
10         instr_p tail;
11         int     qlen;
12 };
13
14 #define qhead(q)        (q)->head
15 #define qlength(q)      (q)->qlen
16 #define next(x)         (x)->fw