Implement KE::Dispatcher::UpdateRunTime stub
All checks were successful
Builds / ExectOS (amd64, release) (push) Successful in -59m27s
Builds / ExectOS (amd64, debug) (push) Successful in -59m26s
Builds / ExectOS (i686, debug) (push) Successful in -59m24s
Builds / ExectOS (i686, release) (push) Successful in -59m26s

This commit is contained in:
2026-05-05 23:22:55 +02:00
parent 27440aefc4
commit f7554e0e24
2 changed files with 22 additions and 0 deletions

View File

@@ -28,3 +28,23 @@ KE::Dispatcher::ExitDispatcher(IN KRUNLEVEL OldRunLevel)
/* Lower runlevel */
RunLevel::LowerRunLevel(OldRunLevel);
}
/**
* Updates the runtime quantum of the currently executing thread and handles preemption.
*
* @param TrapFrame
* Supplies a pointer to the hardware trap frame representing the interrupted execution context.
*
* @param RunLevel
* Supplies the system run level at which the interrupt was taken.
*
* @return This routine does not return any value.
*
* @since XT 1.0
*/
XTAPI
VOID
KE::Dispatcher::UpdateRunTime(IN PKTRAP_FRAME TrapFrame,
IN KRUNLEVEL RunLevel)
{
}