From owner-p4-projects Wed May 22 22: 7:32 2002 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 6788837B40A; Wed, 22 May 2002 22:07:25 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F36937B40E for ; Wed, 22 May 2002 22:07:24 -0700 (PDT) Received: (from perforce@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g4N57OK19085 for perforce@freebsd.org; Wed, 22 May 2002 22:07:24 -0700 (PDT) (envelope-from mini@freebsd.org) Date: Wed, 22 May 2002 22:07:24 -0700 (PDT) Message-Id: <200205230507.g4N57OK19085@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: perforce set sender to mini@freebsd.org using -f From: Jonathan Mini Subject: PERFORCE change 11782 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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