~ubuntu-branches/ubuntu/lucid/libxcb/lucid-security

« back to all changes in this revision

Viewing changes to src/xcbint.h

  • Committer: Bazaar Package Importer
  • Author(s): Jamey Sharp
  • Date: 2007-11-24 14:59:42 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071124145942-gce8qu0vw9itcyqa
Tags: 1.1-1
* New upstream release.
* Depend on xcb-proto between 1.1 and 2.0.
* Lintian fix: ${binary:Version}, not ${Source-Version}.
* Update Vcs-* and Homepage: headers for dpkg 1.14.6.

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
 
131
131
typedef struct _xcb_xlib {
132
132
    int lock;
 
133
    int sloppy_lock;
133
134
    pthread_t thread;
134
135
    pthread_cond_t cond;
135
136
} _xcb_xlib;
182
183
};
183
184
 
184
185
void _xcb_conn_shutdown(xcb_connection_t *c);
 
186
void _xcb_wait_io(xcb_connection_t *c, pthread_cond_t *cond);
185
187
int _xcb_conn_wait(xcb_connection_t *c, pthread_cond_t *cond, struct iovec **vector, int *count);
186
188
 
187
189