diff options
author | Jonathan Gray <jsg@jsg.id.au> | 2013-03-18 21:38:17 +1100 |
---|---|---|
committer | Jonathan Gray <jsg@jsg.id.au> | 2013-03-18 21:38:17 +1100 |
commit | a725689ddd5bf6ff10604c43ec648a821c83d015 (patch) | |
tree | 7431fe5c9a12f2dd299b506e08e372a394599f88 /sys/kern | |
parent | c1d76daf2e0c8ab8c962e3b7cc2c17fe5db5765e (diff) |
Revert "have wakeup return the number of processes woken up"kms/intel
This reverts commit 52685f417729ae0089f640bc756c8160830c8618.
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/kern_synch.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/sys/kern/kern_synch.c b/sys/kern/kern_synch.c index 084a194c847..f1db615348b 100644 --- a/sys/kern/kern_synch.c +++ b/sys/kern/kern_synch.c @@ -350,13 +350,13 @@ unsleep(struct proc *p) /* * Make a number of processes sleeping on the specified identifier runnable. */ -int +void wakeup_n(const volatile void *ident, int n) { struct slpque *qp; struct proc *p; struct proc *pnext; - int s, woken = 0; + int s; SCHED_LOCK(s); qp = &slpque[LOOKUP(ident)]; @@ -370,24 +370,20 @@ wakeup_n(const volatile void *ident, int n) --n; p->p_wchan = 0; TAILQ_REMOVE(qp, p, p_runq); - if (p->p_stat == SSLEEP) { + if (p->p_stat == SSLEEP) setrunnable(p); - woken++; - } } } SCHED_UNLOCK(s); - - return (woken); } /* * Make all processes sleeping on the specified identifier runnable. */ -int +void wakeup(const volatile void *chan) { - return (wakeup_n(chan, -1)); + wakeup_n(chan, -1); } int |