X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fxcbint.h;h=670dd6958c0e720380fbcffc4892934ac2189476;hb=ff7b6c9124e7caf26381cc7a10fba9eaf1875652;hp=057a315c72cdd2f8ac1dcf21aa8ddeca52bce691;hpb=47ceed78612d48dcda62cc2686fc527d61abe38b;p=free-sw%2Fxcb%2Flibxcb diff --git a/src/xcbint.h b/src/xcbint.h index 057a315..670dd69 100644 --- a/src/xcbint.h +++ b/src/xcbint.h @@ -28,15 +28,16 @@ #ifndef __XCBINT_H #define __XCBINT_H -/* Not simply (a <= b) because eventually the 32-bit sequence number - * will wrap, causing earlier sequence numbers to be higher than later - * ones for a brief but fatal period. (a and b must be unsigned.) */ -#define _xcb_assert_sequence_less(a,b) assert((b) - (a) < 65536) +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +enum workarounds { + WORKAROUND_NONE, + WORKAROUND_GLX_GET_FB_CONFIGS_BUG +}; -#define _xcb_assert_valid_sequence(c) do { \ - _xcb_assert_sequence_less((c)->in.request_read, (c)->out.request_written); \ - _xcb_assert_sequence_less((c)->out.request_written, (c)->out.request); \ -} while(0) +#define XCB_PAD(i) (-(i) & 3) /* xcb_list.c */ @@ -69,20 +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 */ - -/* Index of nearest 4-byte boundary following E. */ -#define XCB_CEIL(E) (((E)+3)&~3) - -#define XCB_PAD(i) ((4 - (i & 3)) & 3) - -int _xcb_set_fd_flags(const int fd); -int _xcb_readn(const int fd, void *buf, const int buflen, int *count); -int _xcb_read_block(const int fd, void *buf, const size_t len); -int _xcb_write(const int fd, char (*buf)[], int *count); -int _xcb_writev(const int fd, struct iovec *vec, int count); - - /* xcb_out.c */ typedef struct _xcb_out { @@ -94,7 +81,6 @@ typedef struct _xcb_out { struct iovec *vec; int vec_len; - void *last_request; unsigned int request; unsigned int request_written; @@ -125,14 +111,16 @@ typedef struct _xcb_in { _xcb_map *replies; _xcb_queue *events; _xcb_list *readers; + + 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); +int _xcb_in_expect_reply(XCBConnection *c, unsigned int request, enum workarounds workaround, int flags); -int _xcb_in_read_packet(XCBConnection *c); int _xcb_in_read(XCBConnection *c); int _xcb_in_read_block(XCBConnection *c, void *buf, int nread); @@ -155,7 +143,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);