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
부모 7344c5ed4a
커밋 678a0f4f48
2개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

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

파일 보기

@@ -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;