diff options
| author | Peter Dufault <dufault@FreeBSD.org> | 2000-03-02 22:03:49 +0000 |
|---|---|---|
| committer | Peter Dufault <dufault@FreeBSD.org> | 2000-03-02 22:03:49 +0000 |
| commit | 6d9a8d3e8fa24da456346fa8110bc45797a2bc33 (patch) | |
| tree | ed2cf0f3ef6926457ad30ae4ac1c6c0b510096bc /sys/kern | |
| parent | 14283480b34461f63b586dc322f63c8eac25f1cc (diff) | |
Notes
Diffstat (limited to 'sys/kern')
| -rw-r--r-- | sys/kern/kern_synch.c | 7 | ||||
| -rw-r--r-- | sys/kern/subr_trap.c | 1 |
2 files changed, 1 insertions, 7 deletions
diff --git a/sys/kern/kern_synch.c b/sys/kern/kern_synch.c index 8d0a8ee9ce27..a590506ecd45 100644 --- a/sys/kern/kern_synch.c +++ b/sys/kern/kern_synch.c @@ -65,7 +65,6 @@ static void sched_setup __P((void *dummy)); SYSINIT(sched_setup, SI_SUB_KICK_SCHEDULER, SI_ORDER_FIRST, sched_setup, NULL) u_char curpriority; -u_char currtpriority; int hogticks; int lbolt; int sched_quantum; /* Roundrobin scheduling quantum in ticks. */ @@ -112,15 +111,13 @@ curpriority_cmp(p) { int c_class, p_class; - if (curproc->p_rtprio.prio != currtpriority) - Debugger("currtprio"); c_class = RTP_PRIO_BASE(curproc->p_rtprio.type); p_class = RTP_PRIO_BASE(p->p_rtprio.type); if (p_class != c_class) return (p_class - c_class); if (p_class == RTP_PRIO_NORMAL) return (((int)p->p_priority - (int)curpriority) / PPQ); - return ((int)p->p_rtprio.prio - (int)currtpriority); + return ((int)p->p_rtprio.prio - (int)curproc->p_rtprio.prio); } /* @@ -471,7 +468,6 @@ tsleep(ident, priority, wmesg, timo) mi_switch(); resume: curpriority = p->p_usrpri; - currtpriority = p->p_rtprio.prio; splx(s); p->p_flag &= ~P_SINTR; if (p->p_flag & P_TIMEOUT) { @@ -611,7 +607,6 @@ await(int priority, int timo) mi_switch(); resume: curpriority = p->p_usrpri; - currtpriority = p->p_rtprio.prio; splx(s); p->p_flag &= ~P_SINTR; diff --git a/sys/kern/subr_trap.c b/sys/kern/subr_trap.c index 836555c905a8..a8b73cf6a02b 100644 --- a/sys/kern/subr_trap.c +++ b/sys/kern/subr_trap.c @@ -196,7 +196,6 @@ userret(p, frame, oticks) (u_int)(p->p_sticks - oticks) * psratio); curpriority = p->p_priority; - currtpriority = p->p_rtprio.prio; } /* |
