Date: Wed, 22 May 2002 22:07:24 -0700 (PDT) From: Jonathan Mini <mini@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 11782 for review Message-ID: <200205230507.g4N57OK19085@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=11782 Change 11782 by mini@mini_stylus on 2002/05/22 22:07:13 Diff reduction: don't change the label "runfast" to "allrunfast." Affected files ... ... //depot/projects/kse/sys/kern/kern_sig.c#50 edit Differences ... ==== //depot/projects/kse/sys/kern/kern_sig.c#50 (text+ko) ==== @@ -1336,7 +1336,7 @@ * All threads must be restarted. */ p->p_flag &= ~P_STOPPED; - goto allrunfast; + goto runfast; } if (prop & SA_CONT) { @@ -1364,7 +1364,7 @@ * single thread is runnable asap. * XXXKSE for now however, make them all run. */ - goto allrunfast; + goto runfast; } /* * The signal is not ignored or caught. @@ -1426,7 +1426,7 @@ */ if (prop & SA_STOP) { if (action != SIG_DFL) - goto allrunfast; + goto runfast; /* * If a child holding parent blocked, @@ -1445,7 +1445,7 @@ mtx_unlock_spin(&sched_lock); goto out; } else - goto allrunfast; + goto runfast; /* NOTREACHED */ } else { /* Not in "NORMAL" state. discard the signal. */ @@ -1458,7 +1458,7 @@ * running threads. */ -allrunfast: +runfast: FOREACH_THREAD_IN_PROC(p, td) tdsignal(td, sig, action); mtx_lock_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?200205230507.g4N57OK19085>