projects
/
free-sw
/
xcb
/
libxcb
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06c7889
)
Remove vestiges of adjacent request combining implementation. It is very dead.
author
Jamey Sharp
<jamey@minilop.net>
Thu, 23 Feb 2006 07:09:29 +0000
(23:09 -0800)
committer
Jamey Sharp
<jamey@minilop.net>
Thu, 23 Feb 2006 07:09:29 +0000
(23:09 -0800)
src/xcb_out.c
patch
|
blob
|
history
src/xcbint.h
patch
|
blob
|
history
diff --git
a/src/xcb_out.c
b/src/xcb_out.c
index
a215bcc
..
80d7108
100644
(file)
--- a/
src/xcb_out.c
+++ b/
src/xcb_out.c
@@
-174,7
+174,6
@@
int _xcb_out_init(_xcb_out *out)
out->vec = 0;
out->vec_len = 0;
- out->last_request = 0;
out->request = 0;
out->request_written = 0;
@@
-272,7
+271,6
@@
int _xcb_out_flush(XCBConnection *c)
int ret = 1;
while(ret > 0 && (c->out.queue_len || c->out.vec_len))
ret = _xcb_conn_wait(c, /*should_write*/ 1, &c->out.cond);
- c->out.last_request = 0;
c->out.request_written = c->out.request;
pthread_cond_broadcast(&c->out.cond);
return ret;
diff --git
a/src/xcbint.h
b/src/xcbint.h
index
9cb0c30
..
873d65e
100644
(file)
--- a/
src/xcbint.h
+++ b/
src/xcbint.h
@@
-99,7
+99,6
@@
typedef struct _xcb_out {
struct iovec *vec;
int vec_len;
- void *last_request;
unsigned int request;
unsigned int request_written;