From: Jamey Sharp Date: Sun, 26 Feb 2006 07:27:47 +0000 (-0800) Subject: XCB has not had tracing features for a long time: remove the remnants. X-Git-Tag: 1.8.1~368 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=46a754998149c5f4a1670787b3ea36731caf6506;p=profile%2Fivi%2Flibxcb.git XCB has not had tracing features for a long time: remove the remnants. --- 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; }