[Xcb] [PATCH libX11 2/3] Avoid reading events from connection when it's not necessary.
Rami Ylimäki
rami.ylimaki at vincit.fi
Tue Mar 22 05:33:22 PDT 2011
This commit changes poll_for_event to check for queued events
only. This optimizes unnecessary system calls away in certain
situations. For example, calling XInternAtoms would read from the
connection a bit too much without the fix.
_XReply uses xcb_wait_for_reply to read a reply. It only cares about
handling events that preceded the reply. Those events must have been
already queued when xcb_wait_for_reply returns.
_XReadEvents uses xcb_wait_for_event to read an event. Only the
replies that preceded the event should be handled. Therefore the
replies that we care about must have been already queued when
xcb_wait_for_event returns.
_XEventsQueued should check the connection status if events haven't
been queued. This is accomplished by extracting the xcb_poll_for_event
call from poll_for_event. _XEventsQueued is the only function that
actually needed the connection to be checked in poll_for_event.
Signed-off-by: Rami Ylimäki <rami.ylimaki at vincit.fi>
---
src/xcb_io.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/src/xcb_io.c b/src/xcb_io.c
index 8930736..0ffda40 100644
--- a/src/xcb_io.c
+++ b/src/xcb_io.c
@@ -207,7 +207,7 @@ static xcb_generic_reply_t *poll_for_event(Display *dpy)
assert(dpy->xcb->event_owner == XlibOwnsEventQueue && !dpy->xcb->event_waiter);
if(!dpy->xcb->next_event)
- dpy->xcb->next_event = xcb_poll_for_event(dpy->xcb->connection);
+ dpy->xcb->next_event = xcb_poll_for_queued_event(dpy->xcb->connection);
if(dpy->xcb->next_event)
{
@@ -301,6 +301,8 @@ int _XEventsQueued(Display *dpy, int mode)
* can reasonably claim there are no new events right now. */
if(!dpy->xcb->event_waiter)
{
+ if(!dpy->xcb->next_event)
+ dpy->xcb->next_event = xcb_poll_for_event(dpy->xcb->connection);
while((response = poll_for_response(dpy)))
handle_response(dpy, response, False);
if(xcb_connection_has_error(dpy->xcb->connection))
--
1.6.3.3
More information about the Xcb
mailing list