Fix incorrect SystemTime reference in KE::SharedData::GetInterruptTime function
All checks were successful
All checks were successful
This commit is contained in:
@@ -29,10 +29,10 @@ KE::SharedData::GetInterruptTime(VOID)
|
|||||||
do
|
do
|
||||||
{
|
{
|
||||||
/* Read the primary high part and low part */
|
/* Read the primary high part and low part */
|
||||||
InterruptTime.HighPart = KernelSharedData->SystemTime.High1Part;
|
InterruptTime.HighPart = KernelSharedData->InterruptTime.High1Part;
|
||||||
InterruptTime.LowPart = KernelSharedData->SystemTime.LowPart;
|
InterruptTime.LowPart = KernelSharedData->InterruptTime.LowPart;
|
||||||
}
|
}
|
||||||
while(InterruptTime.HighPart != KernelSharedData->SystemTime.High2Part);
|
while(InterruptTime.HighPart != KernelSharedData->InterruptTime.High2Part);
|
||||||
|
|
||||||
/* Return the 64-bit time */
|
/* Return the 64-bit time */
|
||||||
return InterruptTime;
|
return InterruptTime;
|
||||||
|
|||||||
Reference in New Issue
Block a user