diff options
author | Austin Clements <[email protected]> | 2010-09-02 14:30:06 -0400 |
---|---|---|
committer | Austin Clements <[email protected]> | 2010-09-02 14:30:06 -0400 |
commit | c7c21467c3d3c9f2a04d6fac3b8ef796470b0448 (patch) | |
tree | e9d09f6e5fd4459fc73a0ab9f656c139c9fa23b9 /proc.c | |
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
Diffstat (limited to 'proc.c')
-rw-r--r-- | proc.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -17,6 +17,8 @@ int nextpid = 1; extern void forkret(void); extern void trapret(void); +static void wakeup1(void *chan); + void pinit(void) { |