X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fxcbint.h;h=6a61d1846a3006dc0e0eaaf7b6f15cbba2b30f34;hb=0f130b4d945a27fd2b4655c351ebe70d61cac598;hp=ae36ac5dfbf46f734b86eb479617d9aeb810cb9d;hpb=67b2649dc4b6726c6d11fb0e41429ae5de82b0e8;p=free-sw%2Fxcb%2Flibxcb diff --git a/src/xcbint.h b/src/xcbint.h index ae36ac5..6a61d18 100644 --- a/src/xcbint.h +++ b/src/xcbint.h @@ -37,6 +37,8 @@ enum workarounds { WORKAROUND_GLX_GET_FB_CONFIGS_BUG }; +#define XCB_PAD(i) (-(i) & 3) + /* xcb_list.c */ typedef struct _xcb_list _xcb_list; @@ -68,13 +70,6 @@ void *_xcb_map_get(_xcb_map *q, unsigned int key); void *_xcb_map_remove(_xcb_map *q, unsigned int key); -/* xcb_util.c */ - -#define XCB_PAD(i) (-(i) & 3) - -int _xcb_set_fd_flags(const int fd); - - /* xcb_out.c */ typedef struct _xcb_out { @@ -114,16 +109,18 @@ typedef struct _xcb_in { _xcb_queue *current_reply; _xcb_map *replies; - _xcb_queue *events; + struct event_list *events; + struct event_list **events_tail; _xcb_list *readers; - _xcb_queue *pending_replies; + struct pending_reply *pending_replies; + struct pending_reply **pending_replies_tail; } _xcb_in; int _xcb_in_init(_xcb_in *in); void _xcb_in_destroy(_xcb_in *in); -int _xcb_in_expect_reply(XCBConnection *c, unsigned int request, enum workarounds workaround); +int _xcb_in_expect_reply(XCBConnection *c, unsigned int request, enum workarounds workaround, int flags); int _xcb_in_read(XCBConnection *c); int _xcb_in_read_block(XCBConnection *c, void *buf, int nread); @@ -147,7 +144,8 @@ void _xcb_xid_destroy(XCBConnection *c); typedef struct _xcb_ext { pthread_mutex_t lock; - _xcb_map *extensions; + struct lazyreply *extensions; + int extensions_size; } _xcb_ext; int _xcb_ext_init(XCBConnection *c);