mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
ntdll: Properly set flag which indicates buffer empty state.
This commit is contained in:
parent
a5eb9eee42
commit
52d1080544
@ -851,6 +851,7 @@ todo_wine
|
||||
{
|
||||
res = GetOverlappedResult(hcom, &ovl_wait, &bytes, FALSE);
|
||||
ok(res, "GetOverlappedResult reported error %d\n", GetLastError());
|
||||
todo_wine
|
||||
ok(bytes == sizeof(evtmask), "expected %u, written %u\n", (UINT)sizeof(evtmask), bytes);
|
||||
res = TRUE;
|
||||
}
|
||||
|
@ -838,16 +838,13 @@ static NTSTATUS get_irq_info(int fd, serial_irq_info *irq_info)
|
||||
TRACE("TIOCSERGETLSR err %s\n", strerror(errno));
|
||||
#endif
|
||||
#ifdef TIOCOUTQ /* otherwise we log when the out queue gets empty */
|
||||
if (ioctl(fd, TIOCOUTQ, &irq_info->temt))
|
||||
if (!ioctl(fd, TIOCOUTQ, &out))
|
||||
{
|
||||
TRACE("TIOCOUTQ err %s\n", strerror(errno));
|
||||
return FILE_GetNtStatus();
|
||||
}
|
||||
else
|
||||
{
|
||||
if (irq_info->temt == 0)
|
||||
irq_info->temt = 1;
|
||||
irq_info->temt = out == 0;
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
TRACE("TIOCOUTQ err %s\n", strerror(errno));
|
||||
return FILE_GetNtStatus();
|
||||
#endif
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user