From bfd08e980bd8207a2a08b7f1af33fc34e673e18b Mon Sep 17 00:00:00 2001 From: Stefan Ginsberg Date: Wed, 13 Aug 2008 17:24:22 +0000 Subject: [PATCH] - Remove KiRawTicks -- this was previously a ros-specific kernel export, but is now unused - Fix a comment typo svn path=/trunk/; revision=35309 --- reactos/ntoskrnl/ke/clock.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/ke/clock.c b/reactos/ntoskrnl/ke/clock.c index ee4255f9eaa..71b46c60c0d 100644 --- a/reactos/ntoskrnl/ke/clock.c +++ b/reactos/ntoskrnl/ke/clock.c @@ -17,7 +17,6 @@ LARGE_INTEGER KeBootTime; ULONGLONG KeBootTimeBias; volatile KSYSTEM_TIME KeTickCount = {0}; -volatile ULONG KiRawTicks = 0; ULONG KeMaximumIncrement; ULONG KeMinimumIncrement; ULONG KeTimeAdjustment; @@ -95,7 +94,7 @@ KeSetSystemTime(IN PLARGE_INTEGER NewTime, Timer = CONTAINING_RECORD(NextEntry, KTIMER, TimerListEntry); NextEntry = NextEntry->Flink; - /* Is is absolute? */ + /* Is it absolute? */ if (Timer->Header.Absolute) { /* Remove it from the timer list */