Commit 147ddfef authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Removed broken support for EV_TXEMPTY because it causes busy loops.

parent 7526540e
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment