Removed broken support for EV_TXEMPTY because it causes busy loops.

This commit is contained in:
Mike McCormack 2001-03-14 17:25:52 +00:00 committed by Alexandre Julliard
parent 7526540e03
commit 147ddfefcb
1 changed files with 2 additions and 2 deletions

View File

@ -221,8 +221,8 @@ int serial_async_get_poll_events( struct async *ov )
mask = async_get_eventmask(ov);
if(mask&EV_RXCHAR)
events |= POLLIN;
if(mask&EV_TXEMPTY)
events |= POLLOUT;
/* if(mask&EV_TXEMPTY)
events |= POLLOUT; */
break;
}
return events;