diff options
| author | Konstantin Belousov <kib@FreeBSD.org> | 2009-07-14 22:50:41 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2009-07-14 22:50:41 +0000 |
| commit | c8167830f97e68ba65ea04b9c8835bc4f00bb6ec (patch) | |
| tree | edfdc0d609693bf9b19c6c4798ab14a951073593 | |
| parent | eddfbb763ded6b5f6777335142be9a0edab628bb (diff) | |
Notes
| -rw-r--r-- | sys/kern/kern_synch.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/kern_synch.c b/sys/kern/kern_synch.c index b91c1a50bc27..aad12b602a44 100644 --- a/sys/kern/kern_synch.c +++ b/sys/kern/kern_synch.c @@ -347,8 +347,11 @@ wakeup(void *ident) sleepq_lock(ident); wakeup_swapper = sleepq_broadcast(ident, SLEEPQ_SLEEP, 0, 0); sleepq_release(ident); - if (wakeup_swapper) + if (wakeup_swapper) { + KASSERT(ident != &proc0, + ("wakeup and wakeup_swapper and proc0")); kick_proc0(); + } } /* |
