mirror of
https://github.com/reactos/reactos.git
synced 2026-06-04 02:10:28 +08:00
[NTOS:KD] Remove 'support' for Pice. It was only setting a flag.
This commit is contained in:
@@ -218,9 +218,6 @@ typedef struct _KDP_DEBUG_MODE
|
||||
UCHAR Serial :1;
|
||||
UCHAR File :1;
|
||||
UCHAR Bochs :1;
|
||||
|
||||
/* Currently Supported Wrappers */
|
||||
UCHAR Pice :1;
|
||||
};
|
||||
|
||||
/* Generic Value */
|
||||
|
||||
@@ -106,18 +106,6 @@ KdpGetDebugMode(PCHAR Currentp2)
|
||||
p2 += 5;
|
||||
KdpDebugMode.Bochs = TRUE;
|
||||
}
|
||||
/* Check for PICE Debugging */
|
||||
else if (!_strnicmp(p2, "PICE", 4))
|
||||
{
|
||||
/* Enable it */
|
||||
p2 += 4;
|
||||
KdpDebugMode.Pice = TRUE;
|
||||
|
||||
/* Enable Debugging */
|
||||
KdDebuggerNotPresent = FALSE;
|
||||
KdDebuggerEnabled = TRUE;
|
||||
SharedUserData->KdDebuggerEnabled = TRUE;
|
||||
}
|
||||
|
||||
return p2;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user