Skip to content
Snippets Groups Projects
Commit 064a0798 authored by deuce's avatar deuce
Browse files

Use tcflush() rather than the ioctl.

parent c30f55fe
No related branches found
No related tags found
No related merge requests found
......@@ -183,15 +183,11 @@ BOOL comReadByte(COM_HANDLE handle, BYTE* ch)
BOOL comPurgeInput(COM_HANDLE handle)
{
int what = FREAD;
return(ioctl(handle, TIOCFLUSH, &what)==0);
return(tcflush(handle, TCIFLUSH)==0);
}
BOOL comPurgeOutput(COM_HANDLE handle)
{
int what = FWRITE;
return(ioctl(handle, TIOCFLUSH, &what)==0);
return(tcflush(handle, TCOFLUSH)==0);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment