mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 20:50:29 +00:00
- Remove KiRawTicks -- this was previously a ros-specific kernel export, but is now unused
- Fix a comment typo svn path=/trunk/; revision=35309
This commit is contained in:
parent
6c420630c9
commit
bfd08e980b
1 changed files with 1 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue