diff options
author | rsc <rsc> | 2007-08-28 19:25:04 +0000 |
---|---|---|
committer | rsc <rsc> | 2007-08-28 19:25:04 +0000 |
commit | cffa9543012ee0bc2a1d355ed00839b03fe7ae0c (patch) | |
tree | 72af3d67a6e1deb91ab579774281472791c46e9b /defs.h | |
parent | 5573c8f296091a484e486dcf153ce60b7c632df3 (diff) | |
download | xv6-labs-cffa9543012ee0bc2a1d355ed00839b03fe7ae0c.tar.gz xv6-labs-cffa9543012ee0bc2a1d355ed00839b03fe7ae0c.tar.bz2 xv6-labs-cffa9543012ee0bc2a1d355ed00839b03fe7ae0c.zip |
nits
Diffstat (limited to 'defs.h')
-rw-r--r-- | defs.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -96,16 +96,16 @@ int pipewrite(struct pipe*, char*, int); // proc.c struct proc* copyproc(struct proc*); +void exit(void); int growproc(int); +int kill(int); void pinit(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*); void userinit(void); +int wait(void); void wakeup(void*); void yield(void); |