X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fxcb_conn.c;h=3b315bca480c2d68b225642bd1f24e1c30ed5411;hb=3de6ab7b786775d9e7df1523c27cdfe3ffd3a25f;hp=3d183693670f094cea6192c5bc432891b203e297;hpb=57b0cd8fea498a32ff2322583c7278d5e86aa4e8;p=free-sw%2Fxcb%2Flibxcb diff --git a/src/xcb_conn.c b/src/xcb_conn.c index 3d18369..3b315bc 100644 --- a/src/xcb_conn.c +++ b/src/xcb_conn.c @@ -48,7 +48,7 @@ static const int error_connection = 1; static int set_fd_flags(const int fd) { - long flags = fcntl(fd, F_GETFL, 0); + int flags = fcntl(fd, F_GETFL, 0); if(flags == -1) return 0; flags |= O_NONBLOCK; @@ -59,6 +59,18 @@ static int set_fd_flags(const int fd) return 1; } +static int _xcb_xlib_init(_xcb_xlib *xlib) +{ + xlib->lock = 0; + pthread_cond_init(&xlib->cond, 0); + return 1; +} + +static void _xcb_xlib_destroy(_xcb_xlib *xlib) +{ + pthread_cond_destroy(&xlib->cond); +} + static int write_setup(xcb_connection_t *c, xcb_auth_info_t *auth_info) { static const char pad[3]; @@ -215,6 +227,7 @@ xcb_connection_t *xcb_connect_to_fd(int fd, xcb_auth_info_t *auth_info) if(!( set_fd_flags(fd) && pthread_mutex_init(&c->iolock, 0) == 0 && + _xcb_xlib_init(&c->xlib) && _xcb_in_init(&c->in) && _xcb_out_init(&c->out) && write_setup(c, auth_info) && @@ -239,6 +252,7 @@ void xcb_disconnect(xcb_connection_t *c) close(c->fd); pthread_mutex_destroy(&c->iolock); + _xcb_xlib_destroy(&c->xlib); _xcb_in_destroy(&c->in); _xcb_out_destroy(&c->out); @@ -258,6 +272,12 @@ void _xcb_conn_shutdown(xcb_connection_t *c) void _xcb_lock_io(xcb_connection_t *c) { pthread_mutex_lock(&c->iolock); + while(c->xlib.lock) + { + if(pthread_equal(c->xlib.thread, pthread_self())) + break; + pthread_cond_wait(&c->xlib.cond, &c->iolock); + } } void _xcb_unlock_io(xcb_connection_t *c)