diff options
author | marha <marha@users.sourceforge.net> | 2012-03-09 10:19:35 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-03-09 10:19:35 +0100 |
commit | d483a0007d3a25fbf565436f655fa45b4265628a (patch) | |
tree | 375342c609f272e0e025d33d4891fba3fdb69a7b /libxcb | |
parent | b4e09d9f9c2cb930daef6b578e3051e71425ed7f (diff) | |
download | vcxsrv-d483a0007d3a25fbf565436f655fa45b4265628a.tar.gz vcxsrv-d483a0007d3a25fbf565436f655fa45b4265628a.tar.bz2 vcxsrv-d483a0007d3a25fbf565436f655fa45b4265628a.zip |
libxcb fontconfig pixman mesa git update 9 Mar 2012
Diffstat (limited to 'libxcb')
-rw-r--r-- | libxcb/src/xcb_in.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/libxcb/src/xcb_in.c b/libxcb/src/xcb_in.c index 969cfc08b..4998cdda3 100644 --- a/libxcb/src/xcb_in.c +++ b/libxcb/src/xcb_in.c @@ -51,11 +51,6 @@ #define XCB_REPLY 1 #define XCB_XGE_EVENT 35 -/* required for compiling for Win32 using MinGW */ -#ifndef MSG_WAITALL -#define MSG_WAITALL 0 -#endif - struct event_list { xcb_generic_event_t *event; struct event_list *next; @@ -269,7 +264,7 @@ static int read_block(const int fd, void *buf, const ssize_t len) int done = 0; while(done < len) { - int ret = recv(fd, ((char *) buf) + done, len - done,MSG_WAITALL); + int ret = recv(fd, ((char *) buf) + done, len - done, 0); if(ret > 0) done += ret; #ifndef _WIN32 @@ -661,7 +656,7 @@ void _xcb_in_replies_done(xcb_connection_t *c) int _xcb_in_read(xcb_connection_t *c) { - int n = recv(c->fd, c->in.queue + c->in.queue_len, sizeof(c->in.queue) - c->in.queue_len,MSG_WAITALL); + int n = recv(c->fd, c->in.queue + c->in.queue_len, sizeof(c->in.queue) - c->in.queue_len, 0); if(n > 0) c->in.queue_len += n; while(read_packet(c)) |