delete proc_ on proc_exit, proc_wait, proc_kill

This commit is contained in:
rsc 2007-08-28 19:14:43 +00:00
parent eb52c7de1d
commit 5573c8f296
4 changed files with 12 additions and 12 deletions

6
defs.h
View file

@ -98,10 +98,10 @@ int pipewrite(struct pipe*, char*, int);
struct proc* copyproc(struct proc*);
int growproc(int);
void pinit(void);
void proc_exit(void);
int proc_kill(int);
int proc_wait(void);
void procdump(void);
void exit(void);
int kill(int);
int wait(void);
void scheduler(void) __attribute__((noreturn));
void setupsegs(struct proc*);
void sleep(void*, struct spinlock*);