diff options
author | ache <ache@FreeBSD.org> | 2006-12-16 21:17:27 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2006-12-16 21:17:27 +0000 |
commit | aebc61a22fd0290b0a5c49629fb9b20ad77270fc (patch) | |
tree | 4948efab2fdeec3f381a6cf99c99526d500edff0 /sys/kern/subr_sleepqueue.c | |
parent | 84d03f55f7b237a1b815440821f87aeecd4d02f7 (diff) | |
download | FreeBSD-src-aebc61a22fd0290b0a5c49629fb9b20ad77270fc.zip FreeBSD-src-aebc61a22fd0290b0a5c49629fb9b20ad77270fc.tar.gz |
Don't intermix assignments and variable declarations in prev. commit
Diffstat (limited to 'sys/kern/subr_sleepqueue.c')
-rw-r--r-- | sys/kern/subr_sleepqueue.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/kern/subr_sleepqueue.c b/sys/kern/subr_sleepqueue.c index 4479d13..047cd2e 100644 --- a/sys/kern/subr_sleepqueue.c +++ b/sys/kern/subr_sleepqueue.c @@ -297,11 +297,13 @@ sleepq_add(void *wchan, struct lock_object *lock, const char *wmesg, int flags, if (sq == NULL) { sq = td->td_sleepqueue; #ifdef INVARIANTS - int i; - for (i = 0; i < NR_SLEEPQS; i++) - KASSERT(TAILQ_EMPTY(&sq->sq_blocked[i]), + { + int i; + + for (i = 0; i < NR_SLEEPQS; i++) + KASSERT(TAILQ_EMPTY(&sq->sq_blocked[i]), ("thread's sleep queue %d is not empty", i)); - + } KASSERT(LIST_EMPTY(&sq->sq_free), ("thread's sleep queue has a non-empty free list")); KASSERT(sq->sq_wchan == NULL, ("stale sq_wchan pointer")); |