Rename initial stack reserve macro to KTHREAD_STACK_OFFSET
All checks were successful
Builds / ExectOS (amd64, debug) (push) Successful in 46s
Builds / ExectOS (i686, debug) (push) Successful in 44s
Builds / ExectOS (amd64, release) (push) Successful in 53s
Builds / ExectOS (i686, release) (push) Successful in 51s

This commit is contained in:
2026-05-22 19:21:28 +02:00
parent 9ac64605d3
commit 6b689baa7a
5 changed files with 5 additions and 5 deletions

View File

@@ -213,6 +213,6 @@ KE::KernelInit::SwitchBootStack(VOID)
:
: [Stack] "r" (Stack),
[TargetRoutine] "r" (StartKernel),
[TotalSize] "i" (KTHREAD_STACK_INITIAL_RESERVE)
[TotalSize] "i" (KTHREAD_STACK_OFFSET)
: "memory", "rbp", "rsp");
}