Skip to content

Commit beae68e

Browse files
committed
[NTOS:KD] Remove useless implementation of BREAKPOINT_PRINT in KdSystemDebugControl
This is (as expected) handled in KdpTrap(), which also calls KdpPrint().
1 parent 9e6403c commit beae68e

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

ntoskrnl/kd64/kdapi.c

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2167,21 +2167,6 @@ KdSystemDebugControl(
21672167
/* Handle some internal commands */
21682168
switch ((ULONG)Command)
21692169
{
2170-
#ifndef _WINKD_
2171-
case BREAKPOINT_PRINT: /* DbgPrint */
2172-
{
2173-
/* Call KDBG */
2174-
BOOLEAN Handled;
2175-
return KdpPrint(MAXULONG,
2176-
DPFLTR_INFO_LEVEL,
2177-
(PCHAR)InputBuffer,
2178-
(USHORT)InputBufferLength,
2179-
PreviousMode,
2180-
NULL, // TrapFrame,
2181-
NULL, // ExceptionFrame,
2182-
&Handled);
2183-
}
2184-
#endif
21852170
#if DBG
21862171
case ' soR': /* ROS-INTERNAL */
21872172
{

0 commit comments

Comments
 (0)