Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 May 2002 22:06:22 -0700 (PDT)
From:      Jonathan Mini <mini@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 11780 for review
Message-ID:  <200205230506.g4N56Mw18963@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=11780

Change 11780 by mini@mini_stylus on 2002/05/22 22:05:58

	Remove extraneous braces.

Affected files ...

... //depot/projects/kse/sys/kern/kern_condvar.c#34 edit

Differences ...

==== //depot/projects/kse/sys/kern/kern_condvar.c#34 (text+ko) ====

@@ -634,11 +634,10 @@
 	mtx_lock_spin(&sched_lock);
 	if ((td->td_flags & (TDF_SINTR|TDF_TIMEOUT)) == TDF_SINTR) {
 		if (td->td_wchan != NULL) {
-			if (td->td_state == TDS_SLP) {
+			if (td->td_state == TDS_SLP)
 				setrunnable(td);
-			} else {
+			else
 				cv_waitq_remove(td);
-			}
 		}
 	}
 	mtx_unlock_spin(&sched_lock);

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200205230506.g4N56Mw18963>