[NTOS:KD] Remove /BREAK support left over, likely broken by 819a0ed90a7c1a5dedff08aa3...
authorHervé Poussineau <hpoussin@reactos.org>
Fri, 17 May 2019 12:18:52 +0000 (14:18 +0200)
committerHervé Poussineau <hpoussin@reactos.org>
Thu, 23 May 2019 09:04:40 +0000 (11:04 +0200)
ntoskrnl/include/internal/kd.h
ntoskrnl/kd/kdinit.c

index daad753..4354ba3 100644 (file)
@@ -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;
index b5ec7f4..3a7071d 100644 (file)
@@ -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"))