Add static member definitions for kernel debugger active flag and kernel panic state
All checks were successful
Builds / ExectOS (i686, debug) (push) Successful in 32s
Builds / ExectOS (amd64, debug) (push) Successful in 34s
Builds / ExectOS (i686, release) (push) Successful in 45s
Builds / ExectOS (amd64, release) (push) Successful in 47s

This commit is contained in:
2026-06-06 19:00:49 +02:00
parent 7344c5ed4a
commit 678a0f4f48
2 changed files with 6 additions and 0 deletions

View File

@@ -9,6 +9,9 @@
#include <xtos.hh>
/* Debugger active flag */
BOOLEAN KD::Debugger::Active;
/* Debug I/O spinlock */
KSPIN_LOCK KD::DebugIo::DebugIoLock;

View File

@@ -12,6 +12,9 @@
/* Kernel initialization block passed by boot loader */
PKERNEL_INITIALIZATION_BLOCK KE::BootInformation::InitializationBlock = {};
/* Kernel panic state */
BOOLEAN KE::Crash::KernelPanic;
/* Kernel initial process */
EPROCESS KE::KProcess::InitialProcess;