Xinu7/src/serve11/h/q.h
/* q.h - firstid, firstkey, isempty, lastkey, nonempty */
/* q structure declarations, constants, and inline procedures */
#ifndef NQENT
#define NQENT NPROC + NSEM + NSEM + 4 /* for ready & sleep */
#endif
struct qent { /* one for each process plus two for */
/* each list */
short qkey; /* key on which the queue is ordered */
short qnext; /* pointer to next process or tail */
short qprev; /* pointer to previous process or head */
};
extern struct qent q[];
extern int nextqueue;
/* inline list manipulation procedures */
#define isempty(list) (q[(list)].qnext >= NPROC)
#define nonempty(list) (q[(list)].qnext < NPROC)
#define firstkey(list) (q[q[(list)].qnext].qkey)
#define lastkey(tail) (q[q[(tail)].qprev].qkey)
#define firstid(list) (q[(list)].qnext)
#define EMPTY -1 /* equivalent of null pointer */