diff options
author | Jamey Sharp <jamey@minilop.net> | 2007-10-28 11:56:08 -0700 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2007-10-28 11:56:08 -0700 |
commit | f6b75d6090dc40918196d2b902e9616d0199af42 (patch) | |
tree | de771e70bcb8d0f008e7eafdad40283b3e1c192b /src/xcbint.h | |
parent | 4d828c5eba9fc7161c5f18650f2dbe218e1db06f (diff) |
Factor pthread_cond_wait(iolock) to _xcb_wait_io.
This parallels the _xcb_lock_io and _xcb_unlock_io factoring.
Diffstat (limited to 'src/xcbint.h')
-rw-r--r-- | src/xcbint.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xcbint.h b/src/xcbint.h index ab692ee..ab0264f 100644 --- a/src/xcbint.h +++ b/src/xcbint.h @@ -183,6 +183,7 @@ struct xcb_connection_t { }; void _xcb_conn_shutdown(xcb_connection_t *c); +void _xcb_wait_io(xcb_connection_t *c, pthread_cond_t *cond); int _xcb_conn_wait(xcb_connection_t *c, pthread_cond_t *cond, struct iovec **vector, int *count); |