From 52d70967796e60fe1de4013dbf93b0996ebe3ed0 Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Wed, 9 Jul 2003 20:17:47 +0000 Subject: [PATCH] - Initialized TickCountMultiplier from shared user data. svn path=/trunk/; revision=5026 --- reactos/ntoskrnl/ke/timer.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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"); }