Implement thread preemption and context switching in dispatch interrupt handler
All checks were successful
Builds / ExectOS (amd64, debug) (push) Successful in 34s
Builds / ExectOS (i686, debug) (push) Successful in 33s
Builds / ExectOS (i686, release) (push) Successful in 46s
Builds / ExectOS (amd64, release) (push) Successful in 48s

This commit is contained in:
2026-06-18 11:18:36 +02:00
parent 156ae3efab
commit bae43034a6
3 changed files with 96 additions and 2 deletions

View File

@@ -19,7 +19,10 @@ namespace KE
{
public:
STATIC XTFASTCALL VOID InsertDeferredReadyList(IN PKTHREAD Thread);
STATIC XTAPI VOID ProcessQuantumEnd(VOID);
STATIC XTAPI VOID ProcessReadyThread(IN PKTHREAD Thread);
STATIC XTFASTCALL VOID QueueReadyThread(IN PKTHREAD Thread,
IN PKPROCESSOR_CONTROL_BLOCK Prcb);
STATIC XTAPI VOID ReadyThread(IN PKTHREAD Thread);
};
}