diff options
| author | Austin Clements <amdragon@mit.edu> | 2010-09-02 14:30:06 -0400 | 
|---|---|---|
| committer | Austin Clements <amdragon@mit.edu> | 2010-09-02 14:30:06 -0400 | 
| commit | c7c21467c3d3c9f2a04d6fac3b8ef796470b0448 (patch) | |
| tree | e9d09f6e5fd4459fc73a0ab9f656c139c9fa23b9 | |
| parent | d599aa2e40fc116d84c609358a9fdc51824b621d (diff) | |
| download | xv6-labs-c7c21467c3d3c9f2a04d6fac3b8ef796470b0448.tar.gz xv6-labs-c7c21467c3d3c9f2a04d6fac3b8ef796470b0448.tar.bz2 xv6-labs-c7c21467c3d3c9f2a04d6fac3b8ef796470b0448.zip | |
Oops.  Broke the build when I rearranged proc.c
| -rw-r--r-- | defs.h | 1 | ||||
| -rw-r--r-- | proc.c | 2 | 
2 files changed, 3 insertions, 0 deletions
| @@ -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); @@ -17,6 +17,8 @@ int nextpid = 1;  extern void forkret(void);  extern void trapret(void); +static void wakeup1(void *chan); +  void  pinit(void)  { | 
