I'm working on an X11 application and I'm trying to write a function that will process any events currently in the queue and then return without blocking.
All of the Xlib tutorials that I've found use XNextEvent in a perpetual loop which blocks on each XNextEvent call until an event is ready.
I have looked at XEventsQueued with QueuedAlready, which seems like it should return the number of events ready to be processed, but it always returns 0 even when I know there are events that can be retrieved with XNextEvent.
Am I missing something here, or is there another way to determine if there are events available in the queue?