[NTOS:KD64] The kernel debugger is marked as unavailable by default.

KdPitchDebugger is set to FALSE only when the debugger will be used
later (/DEBUG or /CRASHDEBUG specified in the boot command-line).
This commit is contained in:
Hermès Bélusca-Maïto
2024-12-15 20:44:36 +01:00
parent 47dd86037d
commit a515ef01bf

View File

@@ -77,7 +77,7 @@ PKDEBUG_ROUTINE KiDebugRoutine = KdpStub;
// Debugger Configuration Settings
//
BOOLEAN KdBreakAfterSymbolLoad;
BOOLEAN KdPitchDebugger;
BOOLEAN KdPitchDebugger = TRUE; // The debugger is unavailable by default.
BOOLEAN KdDebuggerNotPresent;
BOOLEAN KdDebuggerEnabled;
BOOLEAN KdAutoEnableOnEvent;