Skip to content

Commit

Permalink
Oops. Broke the build when I rearranged proc.c
Browse files Browse the repository at this point in the history
  • Loading branch information
Austin Clements committed Sep 2, 2010
1 parent d599aa2 commit c7c2146
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 2 additions & 0 deletions proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ int nextpid = 1;
extern void forkret(void);
extern void trapret(void);

static void wakeup1(void *chan);

void
pinit(void)
{
Expand Down

0 comments on commit c7c2146

Please sign in to comment.