commit c7c21467c3d3c9f2a04d6fac3b8ef796470b0448
parent d599aa2e40fc116d84c609358a9fdc51824b621d
Author: Austin Clements <amdragon@mit.edu>
Date: Thu, 2 Sep 2010 14:30:06 -0400
Oops. Broke the build when I rearranged proc.c
Diffstat:
2 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/defs.h b/defs.h
@@ -101,6 +101,7 @@ int kill(int);
void pinit(void);
void procdump(void);
void scheduler(void) __attribute__((noreturn));
+void sched(void);
void sleep(void*, struct spinlock*);
void userinit(void);
int wait(void);
diff --git a/proc.c b/proc.c
@@ -17,6 +17,8 @@ int nextpid = 1;
extern void forkret(void);
extern void trapret(void);
+static void wakeup1(void *chan);
+
void
pinit(void)
{