Implement KE::Dispatcher::UpdateRunTime stub
All checks were successful
All checks were successful
This commit is contained in:
@@ -19,6 +19,8 @@ namespace KE
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
STATIC XTFASTCALL VOID ExitDispatcher(IN KRUNLEVEL OldRunLevel);
|
STATIC XTFASTCALL VOID ExitDispatcher(IN KRUNLEVEL OldRunLevel);
|
||||||
|
STATIC XTAPI VOID UpdateRunTime(IN PKTRAP_FRAME TrapFrame,
|
||||||
|
IN KRUNLEVEL RunLevel);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -28,3 +28,23 @@ KE::Dispatcher::ExitDispatcher(IN KRUNLEVEL OldRunLevel)
|
|||||||
/* Lower runlevel */
|
/* Lower runlevel */
|
||||||
RunLevel::LowerRunLevel(OldRunLevel);
|
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)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user