mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
[NTOS:KD] Remove CTRL+C pending support left over, likely broken by 5a6adb4f13
This commit is contained in:
parent
f6cec6d5cb
commit
95d5b39b57
1 changed files with 1 additions and 2 deletions
|
@ -17,7 +17,6 @@ BOOLEAN KdDebuggerEnabled = FALSE;
|
||||||
BOOLEAN KdEnteredDebugger = FALSE;
|
BOOLEAN KdEnteredDebugger = FALSE;
|
||||||
BOOLEAN KdDebuggerNotPresent = TRUE;
|
BOOLEAN KdDebuggerNotPresent = TRUE;
|
||||||
BOOLEAN KdBreakAfterSymbolLoad = FALSE;
|
BOOLEAN KdBreakAfterSymbolLoad = FALSE;
|
||||||
BOOLEAN KdpBreakPending = FALSE;
|
|
||||||
BOOLEAN KdPitchDebugger = TRUE;
|
BOOLEAN KdPitchDebugger = TRUE;
|
||||||
BOOLEAN KdIgnoreUmExceptions = FALSE;
|
BOOLEAN KdIgnoreUmExceptions = FALSE;
|
||||||
KD_CONTEXT KdpContext;
|
KD_CONTEXT KdpContext;
|
||||||
|
@ -366,7 +365,7 @@ BOOLEAN
|
||||||
NTAPI
|
NTAPI
|
||||||
KdPollBreakIn(VOID)
|
KdPollBreakIn(VOID)
|
||||||
{
|
{
|
||||||
return KdpBreakPending;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue