mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[FREELDR-KDCOM-KDBG]
Fix debugging issues. svn path=/trunk/; revision=59921
This commit is contained in:
parent
aff36c042d
commit
795ebaa8b8
3 changed files with 3 additions and 3 deletions
|
@ -109,7 +109,7 @@ BOOLEAN Rs232PortPollByte(PUCHAR ByteReceived)
|
|||
if (PortInitialized == FALSE)
|
||||
return FALSE;
|
||||
|
||||
return (CpGetByte(&Rs232ComPort, ByteReceived, FALSE) == CP_GET_SUCCESS);
|
||||
return (CpGetByte(&Rs232ComPort, ByteReceived, FALSE, FALSE) == CP_GET_SUCCESS);
|
||||
}
|
||||
*/
|
||||
|
||||
|
|
|
@ -222,7 +222,7 @@ NTAPI
|
|||
KdpPollByte(OUT PUCHAR OutByte)
|
||||
{
|
||||
/* Poll the byte */
|
||||
if (CpGetByte(&KdDebugComPort, OutByte, FALSE, TRUE) == CP_GET_SUCCESS)
|
||||
if (CpGetByte(&KdDebugComPort, OutByte, FALSE, FALSE) == CP_GET_SUCCESS)
|
||||
{
|
||||
return KDP_PACKET_RECEIVED;
|
||||
}
|
||||
|
|
|
@ -136,7 +136,7 @@ KdPortGetByteEx(
|
|||
IN PCPPORT PortInformation,
|
||||
OUT PUCHAR ByteReceived)
|
||||
{
|
||||
return (CpGetByte(PortInformation, ByteReceived, FALSE, TRUE) == CP_GET_SUCCESS);
|
||||
return (CpGetByte(PortInformation, ByteReceived, FALSE, FALSE) == CP_GET_SUCCESS);
|
||||
}
|
||||
|
||||
VOID
|
||||
|
|
Loading…
Reference in a new issue