Author: fireball
Date: Thu Aug 24 13:32:32 2006
New Revision: 23683
URL:
http://svn.reactos.org/svn/reactos?rev=23683&view=rev
Log:
Temporary fix a call to KeUpdateSystemTime(), passing third CLOCK_INCREMENT's value
(100000) as third param.
Modified:
trunk/reactos/hal/halx86/mp/apic.c
Modified: trunk/reactos/hal/halx86/mp/apic.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/hal/halx86/mp/apic.c?rev=2…
==============================================================================
--- trunk/reactos/hal/halx86/mp/apic.c (original)
+++ trunk/reactos/hal/halx86/mp/apic.c Thu Aug 24 13:32:32 2006
@@ -818,7 +818,7 @@
MpsIRQTrapFrameToTrapFrame(Trapframe, &KernelTrapFrame);
if (KeGetCurrentProcessorNumber() == 0)
{
- KeUpdateSystemTime(&KernelTrapFrame, oldIrql);
+ KeUpdateSystemTime(&KernelTrapFrame, oldIrql, 100000); // FIXME:
CLOCK_INCREMENT?
}
else
{