Fix incorrect SystemTime reference in KE::SharedData::GetInterruptTime function
All checks were successful
Builds / ExectOS (amd64, release) (push) Successful in -59m28s
Builds / ExectOS (amd64, debug) (push) Successful in -59m26s
Builds / ExectOS (i686, debug) (push) Successful in -59m27s
Builds / ExectOS (i686, release) (push) Successful in -59m29s

This commit is contained in:
2026-05-03 14:39:14 +02:00
parent 7017985682
commit d532303b7f

View File

@@ -29,10 +29,10 @@ KE::SharedData::GetInterruptTime(VOID)
do
{
/* Read the primary high part and low part */
InterruptTime.HighPart = KernelSharedData->SystemTime.High1Part;
InterruptTime.LowPart = KernelSharedData->SystemTime.LowPart;
InterruptTime.HighPart = KernelSharedData->InterruptTime.High1Part;
InterruptTime.LowPart = KernelSharedData->InterruptTime.LowPart;
}
while(InterruptTime.HighPart != KernelSharedData->SystemTime.High2Part);
while(InterruptTime.HighPart != KernelSharedData->InterruptTime.High2Part);
/* Return the 64-bit time */
return InterruptTime;