diff options
author | Jamey Sharp <jamey@minilop.net> | 2006-02-26 01:27:01 -0800 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2006-02-26 01:27:01 -0800 |
commit | a1eff0c49a2dbb328a79edbeb2b851fa1dfe9e61 (patch) | |
tree | 1cb66a6dea0e1ad076382db6fac3e714c4677575 /src/xcbint.h | |
parent | 46a754998149c5f4a1670787b3ea36731caf6506 (diff) |
Replace my old generic map ADT with a growable array for the extension cache.
Diffstat (limited to 'src/xcbint.h')
-rw-r--r-- | src/xcbint.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xcbint.h b/src/xcbint.h index 34b7197..e8e98eb 100644 --- a/src/xcbint.h +++ b/src/xcbint.h @@ -142,7 +142,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); |