Implement timer expiring too fast for KeDelayExecutionThread. Dedicated to filip

svn path=/trunk/; revision=14184
This commit is contained in:
Alex Ionescu 2005-03-18 23:26:44 +00:00
parent 0412c84cea
commit e389f0c999

View file

@ -126,8 +126,9 @@ KeDelayExecutionThread(KPROCESSOR_MODE WaitMode,
/* Insert the Timer into the Timer Lists and enable it */
if (!KiInsertTimer(ThreadTimer, *Interval)) {
/* FIXME: Unhandled case...what should we do? */
DPRINT1("Could not create timer for KeDelayExecutionThread\n");
/* FIXME: The timer already expired, we should find a new ready thread */
Status = STATUS_SUCCESS;
break;
}
/* Handle Kernel Queues */