Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

According to the man page, calling XSync(dpy, 1) discards the events in the queue, but what does this really mean? If they are not discarded, are they sent twice (once by the XSync() call and a second time when the queue is emptied normally)? Or is it just like a garbage collector (the events get discarded anyway just a later time)?

share|improve this question

migrated from unix.stackexchange.com Jan 25 at 23:39

1 Answer

It's seems that you misconcept two things: X requests with X events, it's not the same. In short:

X requets:

... A client application sends requests to the X server over this connection. These requests are made by the Xlib functions that are called in the client application. ...

X events:

... Many Xlib functions cause the X server to generate events, and the user's typing or moving the pointer can generate events asynchronously. The X server returns events to the client ...

For more info check this - it's very helpful.

XSync called that way: XSync(dpy, False) does two things (according to manul that you pointed):

The XSync function flushes the output buffer and then waits until all requests have been received and processed by the X server.

XSync called that way: XSync(dpy, True) does those two things above plus additional one: discards (processes) all events in the queue.

If you passed True, XSync() discards all events in the queue, including those events that were on the queue before XSync() was called.

For example (pseudocode):

sendEvent2Xserver() //for example by pressing the key
endEvent2Xserver() //for example by mouse button press
XSendEvent() //sending chosen event to X server
XSync(dpy, True) // after this call, it's guaranteed that all the previous events were processed by the server
share|improve this answer
What is exactly meant by "discards"? I read it as "throws away". For example, the X server sends a ButtonRelease event but if the client does a <code>XSync(dpy, True)</code> before processing the complete queue the event is lost? OTOH, you wrote it processes the events, so perhaps it means that it handles all the replies from the X server (like BadWindow errors and such) before returning? – yochi Jan 25 at 15:28
nothing is lost, as I wrote events are processed by the server. XSync(dpy, 1) synchronizes execution between X client and X server. After XSync(dpy, 1) call is made you're guaranteed that all previous requests & events are processed (it's like glFinish() from OpenGL) by the X server. – mzet Jan 25 at 16:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.