Changeset 338 for Whitix/trunk/kernel

Show
Ignore:
Timestamp:
04/24/08 13:00:14 (7 months ago)
Author:
mwhitworth
Message:

Alter check for newly-woken thread.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/trunk/kernel/sched.c

    r334 r338  
    585585        { 
    586586                ThrStartThread(thread); 
    587                 if (thread->quantums > currThread->quantums) 
     587                if (thread->quantums >= currThread->quantums) 
    588588                        thrNeedSchedule=true; 
    589589        }