Date: Tue, 18 Jun 2002 23:54:15 -0700 (PDT) From: Julian Elischer <julian@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 13139 for review Message-ID: <200206190654.g5J6sFZ08276@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=13139 Change 13139 by julian@julian_jules1 on 2002/06/18 23:53:49 typos Affected files ... ... //depot/projects/kse/sys/kern/kern_thread.c#73 edit Differences ... ==== //depot/projects/kse/sys/kern/kern_thread.c#73 (text+ko) ==== @@ -337,7 +337,7 @@ TAILQ_REMOVE(&p->p_suspended, p->p_singlethread, td_runq); setrunqueue(p->p_singlethread); - p->suspcount--; + p->p_suspcount--; } } } @@ -566,7 +566,7 @@ * this thread should just suicide. * Assumes that P_SINGLE_EXIT implies P_STOPPED_SNGL. */ - if ((p->p_flag & P_SINGLE_EXIT) && (p->p_singlethread != td) { + if ((p->p_flag & P_SINGLE_EXIT) && (p->p_singlethread != td)) { mtx_lock_spin(&sched_lock); while (mtx_owned(&Giant)) mtx_unlock(&Giant); 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?200206190654.g5J6sFZ08276>