diff options
author | Jamey Sharp <jamey@minilop.net> | 2006-02-25 23:27:47 -0800 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2006-02-25 23:27:47 -0800 |
commit | 46a754998149c5f4a1670787b3ea36731caf6506 (patch) | |
tree | 64a4ac4a0646943fab2f6d70176368814726a305 /src/xcb_in.c | |
parent | b6cbe837748df5819d00682330d34e2c7d24d349 (diff) |
XCB has not had tracing features for a long time: remove the remnants.
Diffstat (limited to 'src/xcb_in.c')
-rw-r--r-- | src/xcb_in.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/xcb_in.c b/src/xcb_in.c index dc12fa2..6f084ba 100644 --- a/src/xcb_in.c +++ b/src/xcb_in.c @@ -243,11 +243,6 @@ XCBGenericEvent *XCBWaitEvent(XCBConnection *c) XCBGenericEvent *XCBWaitForEvent(XCBConnection *c) { XCBGenericEvent *ret; - -#if XCBTRACEEVENT - fprintf(stderr, "Entering XCBWaitEvent\n"); -#endif - pthread_mutex_lock(&c->iolock); /* _xcb_list_remove_head returns 0 on empty list. */ while(!(ret = _xcb_queue_dequeue(c->in.events))) @@ -256,11 +251,6 @@ XCBGenericEvent *XCBWaitForEvent(XCBConnection *c) wake_up_next_reader(c); pthread_mutex_unlock(&c->iolock); - -#if XCBTRACEEVENT - fprintf(stderr, "Leaving XCBWaitEvent, event type %d\n", ret ? ret->response_type : -1); -#endif - return ret; } |