Initial revision

This commit is contained in:
ceriel
1986-11-24 20:58:35 +00:00
parent 3b2d51a96b
commit 5ced6d6aef
11 changed files with 1356 additions and 0 deletions

12
mach/proto/top/queue.h Normal file
View File

@@ -0,0 +1,12 @@
typedef struct item *item_p;
typedef struct queue_t *queue;
struct queue_t {
instr_p head;
instr_p tail;
int qlen;
};
#define qhead(q) (q)->head
#define qlength(q) (q)->qlen
#define next(x) (x)->fw