Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 May 2002 12:59:57 -0700 (PDT)
From:      Julian Elischer <julian@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 12097 for review
Message-ID:  <200205291959.g4TJxvF82251@freefall.freebsd.org>

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

Change 12097 by julian@julian_ref on 2002/05/29 12:59:46

	 oops, successfully cut-n-pasted the same typo to 2 places

Affected files ...

... //depot/projects/kse/lib/libkvm/kvm_proc.c#14 edit
... //depot/projects/kse/sys/kern/kern_proc.c#62 edit

Differences ...

==== //depot/projects/kse/lib/libkvm/kvm_proc.c#14 (text+ko) ====

@@ -331,7 +331,7 @@
 		kp->ki_traceflag = proc.p_traceflag;
 		if (proc.p_state == PRS_NORMAL) { /*  XXXKSE very aproximate */
 			if ((mainthread.td_state == TDS_RUN) ||
-			    (mainthread.td_state == TDS_RUNNING) {
+			    (mainthread.td_state == TDS_RUNNING)) {
 				kp->ki_stat = SRUN;
 			} else if (mainthread.td_state == TDS_SLEEP) {
 				kp->ki_stat = SSLEEP;

==== //depot/projects/kse/sys/kern/kern_proc.c#62 (text+ko) ====

@@ -729,7 +729,7 @@
 
 	if (p->p_state == PRS_NORMAL) { /*  XXXKSE very aproximate */
 		if ((td->td_state == TDS_RUN) ||
-		    (td->td_state == TDS_RUNNING) {
+		    (td->td_state == TDS_RUNNING)) {
 			kp->ki_stat = SRUN;
 		} else if (td->td_state == TDS_SLEEP) {
 			kp->ki_stat = SSLEEP;

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?200205291959.g4TJxvF82251>