14 lines
167 B
C
14 lines
167 B
C
|
/*
|
||
|
Handling the proctable
|
||
|
*/
|
||
|
|
||
|
/* $Header$ */
|
||
|
|
||
|
struct proc {
|
||
|
size pr_nloc;
|
||
|
ptr pr_ep;
|
||
|
ptr pr_ff; /* first address not in proc */
|
||
|
};
|
||
|
|
||
|
extern struct proc *proctab;
|