diff options
Diffstat (limited to 'sys/kern/kern_synch.c')
-rw-r--r-- | sys/kern/kern_synch.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/kern_synch.c b/sys/kern/kern_synch.c index 46089c7..c0437d5 100644 --- a/sys/kern/kern_synch.c +++ b/sys/kern/kern_synch.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)kern_synch.c 8.9 (Berkeley) 5/19/95 - * $Id: kern_synch.c,v 1.50 1998/03/11 20:50:42 dufault Exp $ + * $Id: kern_synch.c,v 1.51 1998/03/28 10:33:06 bde Exp $ */ #include "opt_ktrace.h" @@ -105,6 +105,9 @@ static void maybe_resched(struct proc *chk) struct proc *p = curproc; /* XXX */ /* If the current scheduler is the idle scheduler or + * the priority is of the new one is higher then reschedule. + */ + /* If the current scheduler is the idle scheduler or * the priority of the new one is higher then reschedule. */ if (p == 0 || |