/** * PROJECT: ExectOS * COPYRIGHT: See COPYING.md in the top level directory * FILE: xtoskrnl/includes/kd/dbg.hh * DESCRIPTION: Kernel debugging support * DEVELOPERS: Aiken Harris */ #ifndef __XTOSKRNL_KD_DBG_HH #define __XTOSKRNL_KD_DBG_HH #include /* Redefine DebugPrint macro for the kernel to enable early debugging */ #undef DebugPrint #ifdef DBG #define DebugPrint(Format, ...) if(KD::DebugIo::KdPrint) KD::DebugIo::KdPrint(Format, __VA_ARGS__); #else #define DebugPrint(Format, ...) ((VOID)NULLPTR) #endif #endif /* __XTOSKRNL_KD_DBG_HH */