mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +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;
|
LARGE_INTEGER KeBootTime;
|
||||||
ULONGLONG KeBootTimeBias;
|
ULONGLONG KeBootTimeBias;
|
||||||
volatile KSYSTEM_TIME KeTickCount = {0};
|
volatile KSYSTEM_TIME KeTickCount = {0};
|
||||||
volatile ULONG KiRawTicks = 0;
|
|
||||||
ULONG KeMaximumIncrement;
|
ULONG KeMaximumIncrement;
|
||||||
ULONG KeMinimumIncrement;
|
ULONG KeMinimumIncrement;
|
||||||
ULONG KeTimeAdjustment;
|
ULONG KeTimeAdjustment;
|
||||||
|
@ -95,7 +94,7 @@ KeSetSystemTime(IN PLARGE_INTEGER NewTime,
|
||||||
Timer = CONTAINING_RECORD(NextEntry, KTIMER, TimerListEntry);
|
Timer = CONTAINING_RECORD(NextEntry, KTIMER, TimerListEntry);
|
||||||
NextEntry = NextEntry->Flink;
|
NextEntry = NextEntry->Flink;
|
||||||
|
|
||||||
/* Is is absolute? */
|
/* Is it absolute? */
|
||||||
if (Timer->Header.Absolute)
|
if (Timer->Header.Absolute)
|
||||||
{
|
{
|
||||||
/* Remove it from the timer list */
|
/* Remove it from the timer list */
|
||||||
|
|
Loading…
Reference in a new issue