mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 21:45:41 +00:00
[NTOS:KD] Remove /BREAK support left over, likely broken by 819a0ed90a
This commit is contained in:
parent
cba1a2f742
commit
f6cec6d5cb
2 changed files with 0 additions and 5 deletions
|
@ -347,9 +347,6 @@ extern KD_DISPATCH_TABLE WrapperTable;
|
|||
/* The KD Native Provider List */
|
||||
extern LIST_ENTRY KdProviders;
|
||||
|
||||
/* Whether to enter KDB as early as possible or not */
|
||||
extern BOOLEAN KdpEarlyBreak;
|
||||
|
||||
extern PKDEBUG_ROUTINE KiDebugRoutine;
|
||||
extern KD_CONTEXT KdpContext;
|
||||
extern ULONG Kd_WIN2000_Mask;
|
||||
|
|
|
@ -26,7 +26,6 @@ KDP_DEBUG_MODE KdpDebugMode;
|
|||
#endif
|
||||
PKDP_INIT_ROUTINE WrapperInitRoutine;
|
||||
KD_DISPATCH_TABLE WrapperTable;
|
||||
BOOLEAN KdpEarlyBreak = FALSE;
|
||||
LIST_ENTRY KdProviders = {&KdProviders, &KdProviders};
|
||||
KD_DISPATCH_TABLE DispatchTable[KdMax];
|
||||
|
||||
|
@ -188,7 +187,6 @@ KdInitSystem(ULONG BootPhase,
|
|||
_strupr(CommandLine);
|
||||
|
||||
/* XXX Check for settings that we support */
|
||||
if (strstr(CommandLine, "BREAK")) KdpEarlyBreak = TRUE;
|
||||
if (strstr(CommandLine, "NODEBUG")) KdDebuggerEnabled = FALSE;
|
||||
else if (strstr(CommandLine, "CRASHDEBUG")) KdDebuggerEnabled = FALSE;
|
||||
else if (strstr(CommandLine, "DEBUG"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue