Move the wakeup_one() prototype from proc.h to systm.h. It now hangs

out with it's sibling, wakeup().
This commit is contained in:
green 1999-12-12 04:21:27 +00:00
parent 2ce6a96b2b
commit 1d49e2f195
2 changed files with 1 additions and 1 deletions

View File

@ -425,7 +425,6 @@ int suser_xxx __P((struct ucred *cred, struct proc *proc, int flag));
void remrunqueue __P((struct proc *));
void cpu_switch __P((struct proc *));
void unsleep __P((struct proc *));
void wakeup_one __P((void *chan));
void cpu_exit __P((struct proc *)) __dead2;
void exit1 __P((struct proc *, int)) __dead2;

View File

@ -288,6 +288,7 @@ int tsleep __P((void *chan, int pri, const char *wmesg, int timo));
int asleep __P((void *chan, int pri, const char *wmesg, int timo));
int await __P((int pri, int timo));
void wakeup __P((void *chan));
void wakeup_one __P((void *chan));
/*
* Common `dev_t' stuff are declared here to avoid #include poisoning