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)?
|
|
|||
|
|
migrated from unix.stackexchange.com Jan 25 at 23:39
|
It's seems that you misconcept two things: X requests with X events, it's not the same. In short: X requets:
X events:
For more info check this - it's very helpful. XSync called that way:
XSync called that way:
For example (pseudocode):
|
|||||
|