Remove xcb_get_io_lock from the Xlib-specific API: it is no longer used.
[free-sw/xcb/libxcb] / src / xcbxlib.h
index 4ceb03e..628d71d 100644 (file)
 #include "xcb.h"
 
 /* This function must be called with the IOLock held. */
-unsigned int XCBGetQueuedRequestRead(XCBConnection *c) deprecated;
+unsigned int xcb_get_request_sent(xcb_connection_t *c);
 
-/* This function must be called with the IOLock held. */
-unsigned int XCBGetRequestSent(XCBConnection *c);
-
-pthread_mutex_t *XCBGetIOLock(XCBConnection *c);
+void xcb_xlib_lock(xcb_connection_t *c);
+void xcb_xlib_unlock(xcb_connection_t *c);
 
 #endif