Skip to content

Commit 77a120a

Browse files
committed
[NTOS:KD] Remove 'support' for Pice. It was only setting a flag.
1 parent c140ff1 commit 77a120a

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

ntoskrnl/include/internal/kd.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,6 @@ typedef struct _KDP_DEBUG_MODE
218218
UCHAR Serial :1;
219219
UCHAR File :1;
220220
UCHAR Bochs :1;
221-
222-
/* Currently Supported Wrappers */
223-
UCHAR Pice :1;
224221
};
225222

226223
/* Generic Value */

ntoskrnl/kd/kdinit.c

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -106,18 +106,6 @@ KdpGetDebugMode(PCHAR Currentp2)
106106
p2 += 5;
107107
KdpDebugMode.Bochs = TRUE;
108108
}
109-
/* Check for PICE Debugging */
110-
else if (!_strnicmp(p2, "PICE", 4))
111-
{
112-
/* Enable it */
113-
p2 += 4;
114-
KdpDebugMode.Pice = TRUE;
115-
116-
/* Enable Debugging */
117-
KdDebuggerNotPresent = FALSE;
118-
KdDebuggerEnabled = TRUE;
119-
SharedUserData->KdDebuggerEnabled = TRUE;
120-
}
121109

122110
return p2;
123111
}

0 commit comments

Comments
 (0)