ack/util/int/proctab.h

24 lines
328 B
C
Raw Normal View History

1988-06-22 16:57:09 +00:00
/*
Handling the proctable
*/
2019-03-17 14:42:00 +00:00
#ifndef PROCTAB_H_
#define PROCTAB_H_
1988-06-22 16:57:09 +00:00
1994-06-24 11:31:16 +00:00
/* $Id$ */
1988-06-22 16:57:09 +00:00
2019-03-17 14:42:00 +00:00
#include "global.h"
1988-06-22 16:57:09 +00:00
struct proc {
size pr_nloc;
ptr pr_ep;
ptr pr_ff; /* first address not in proc */
};
extern struct proc *proctab;
2019-03-17 14:42:00 +00:00
void init_proctab(void);
void add_proc(size, ptr);
void end_init_proctab(void);
#endif /* PROCTAB_H_ */