Rename SwitchCpu to SwitchProcessor
All checks were successful
Builds / ExectOS (amd64, release) (push) Successful in 35s
Builds / ExectOS (amd64, debug) (push) Successful in 50s
Builds / ExectOS (i686, release) (push) Successful in 34s
Builds / ExectOS (i686, debug) (push) Successful in 48s

This commit is contained in:
2026-06-07 12:33:56 +02:00
parent a33b63842a
commit f82562f450
2 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ namespace KD
public:
STATIC XTAPI BOOLEAN DebuggerActive(VOID);
STATIC XTAPI VOID EnterDebugger(IN PKTRAP_FRAME TrapFrame);
STATIC XTAPI KCONTINUE_STATUS SwitchCpu(VOID);
STATIC XTAPI KCONTINUE_STATUS SwitchProcessor(VOID);
private:
STATIC XTAPI BOOLEAN ProcessCpuStateChange(IN PEXCEPTION_RECORD ExceptionRecord,

View File

@@ -82,7 +82,7 @@ KD::Debugger::ProcessCpuStateChange(IN PEXCEPTION_RECORD ExceptionRecord,
*/
XTAPI
KCONTINUE_STATUS
KD::Debugger::SwitchCpu(VOID)
KD::Debugger::SwitchProcessor(VOID)
{
EXCEPTION_RECORD ExceptionRecord;
PKPROCESSOR_CONTROL_BLOCK Prcb;