Implement multi-processor freeze and thaw execution for SMP crash state synchronization
Some checks failed
Builds / ExectOS (amd64, debug) (push) Failing after 22s
Builds / ExectOS (i686, release) (push) Failing after 24s
Builds / ExectOS (amd64, release) (push) Failing after 40s
Builds / ExectOS (i686, debug) (push) Failing after 38s

This commit is contained in:
2026-06-08 14:38:17 +02:00
parent c8cd198c4e
commit b285bc7312
3 changed files with 319 additions and 0 deletions

View File

@@ -12,9 +12,15 @@
/* Kernel initialization block passed by boot loader */
PKERNEL_INITIALIZATION_BLOCK KE::BootInformation::InitializationBlock = {};
/* Processor control block belonging to the freeze owner */
PKPROCESSOR_CONTROL_BLOCK KE::Crash::FreezeOwner;
/* Kernel panic state */
BOOLEAN KE::Crash::KernelPanic;
/* System runlevel before execution freeze */
KRUNLEVEL KE::Crash::RunLevel;
/* Kernel initial process */
EPROCESS KE::KProcess::InitialProcess;