diff --git a/reactos/ntoskrnl/ke/timer.c b/reactos/ntoskrnl/ke/timer.c index 5b2950749bf..1a5ce7cac5e 100644 --- a/reactos/ntoskrnl/ke/timer.c +++ b/reactos/ntoskrnl/ke/timer.c @@ -1,4 +1,4 @@ -/* $Id: timer.c,v 1.57 2003/02/02 16:55:56 ekohl Exp $ +/* $Id: timer.c,v 1.58 2003/07/09 20:17:47 hbirr Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -501,5 +501,8 @@ KeInitializeTimerImpl(VOID) boot_time=SystemBootTime; system_time=boot_time; + SharedUserData->TickCountLow = 0; + SharedUserData->TickCountMultiplier = 167783691; // 2^24 * 1193182 / 119310 + DPRINT("Finished KeInitializeTimerImpl()\n"); }