mirror of
https://github.com/reactos/reactos.git
synced 2025-02-28 19:32:59 +00:00
[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:
parent
47dd86037d
commit
a515ef01bf
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ PKDEBUG_ROUTINE KiDebugRoutine = KdpStub;
|
||||||
// Debugger Configuration Settings
|
// Debugger Configuration Settings
|
||||||
//
|
//
|
||||||
BOOLEAN KdBreakAfterSymbolLoad;
|
BOOLEAN KdBreakAfterSymbolLoad;
|
||||||
BOOLEAN KdPitchDebugger;
|
BOOLEAN KdPitchDebugger = TRUE; // The debugger is unavailable by default.
|
||||||
BOOLEAN KdDebuggerNotPresent;
|
BOOLEAN KdDebuggerNotPresent;
|
||||||
BOOLEAN KdDebuggerEnabled;
|
BOOLEAN KdDebuggerEnabled;
|
||||||
BOOLEAN KdAutoEnableOnEvent;
|
BOOLEAN KdAutoEnableOnEvent;
|
||||||
|
|
Loading…
Reference in a new issue