summaryrefslogtreecommitdiff
path: root/src/xcb_out.c
AgeCommit message (Expand)Author
2022-01-15Fix a memory leakHodong
2021-09-30Fix hang in xcb_request_check()Thomas Anderson
2021-06-04Fix build on WindowsPeter Harris
2018-08-21don't flag extra reply in xcb_take_socketErik Kurzinger
2015-06-12send_fds(): Handle too many outstanding FDs to sendUli Schlachter
2015-06-12Add xcb_send_request_with_fds() and *_with_fds64()Uli Schlachter
2015-06-12send_fds(): Make sure no other thread interrupts usUli Schlachter
2015-06-12xcb_send_fd(): Always close fdsUli Schlachter
2015-04-08expose 64-bit sequence numbers for XLibChristian Linhart
2014-03-30Ensure xcb owns socket and no other threads are writing before send_requestKeith Packard
2013-11-18Revert "fix deadlock with xcb_take_socket/return_socket v3"Uli Schlachter
2013-11-07Add xcb_send_fd APIKeith Packard
2013-06-01fix deadlock with xcb_take_socket/return_socket v3Christian König
2013-05-15whitespace fix in xcb_take_socketChristian König
2012-08-25Always include "config.h" at the start of all C source files.Alan Coopersmith
2012-01-11Added more error states and removed global error_connectionArvind Umrao
2012-01-11Make xcb_take_socket keep flushing until idleKeith Packard
2010-10-09xcb_request_check: Hold the I/O lock while deciding to sync.Jamey Sharp
2010-10-09xcb_send_request: Send all requests using a common internal send_request.Jamey Sharp
2010-04-17Always wake up readers after writing.Jamey Sharp
2010-04-17Delete a useless level of indirection from _xcb_out_send's parameters.Jamey Sharp
2009-07-06Fix precedence bug: wrong length for big-requests preceded by sync.Jamey Sharp
2008-10-29Support handing off socket write permission to external code.Josh Triplett
2008-10-29Track 64-bit sequence numbers internally.Jamey Sharp
2008-10-29Inline _xcb_lock_io, _xcb_unlock_io, and _xcb_wait_io.Jamey Sharp
2008-08-28Use unsigned to compare and rename syncJulien Danjou
2007-10-28Factor pthread_cond_wait(iolock) to _xcb_wait_io.Jamey Sharp
2006-11-18Provide xcb_prefetch_maximum_request_length counterpart to xcb_get_maximum_re...Jamey Sharp
2006-10-04Factor out pthread_mutex_lock and unlock calls for the iolock.Jamey Sharp
2006-09-25Stop installing the protocol descriptions for extensions to an extensions/Josh Triplett
2006-09-23The Great XCB RenamingJosh Triplett
2006-09-21Shut down the connection in all "fatal" error cases.Jamey Sharp
2006-09-21Make all public functions do nothing on an error connection.Jamey Sharp
2006-07-30Fix Keith's 32-bit wrap fix.Jamey Sharp
2006-07-01Switch sequence comparisons to handle 32-bit sequence number wrap.Keith Packard
2006-05-14Use correct word offset when testing for GetFBConfigsSGIX VendorPrivate.Jamey Sharp
2006-05-14In the GLX workaround, use !strcmp to check for equality with "GLX", not strcmp.Josh Triplett
2006-04-20Minor performance improvement: do not call _xcb_in_expect_reply unless it is ...Jamey Sharp
2006-03-12Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcbJamey Sharp
2006-03-12Only _xcb_conn_wait calls _xcb_out_write now, so move it to xcb_conn.c and ma...Jamey Sharp
2006-03-12Remove c->out.vec. Pass iovecs directly down the call tree. Add _xcb_out_flus...Jamey Sharp
2006-03-11Portability fixes. Should help DragonFly and Solaris, and should not hurt any...Jamey Sharp
2006-03-09Move c->out.vec refs out of _xcb_conn_wait up to _xcb_out_flush.Jamey Sharp
2006-03-08Move c->out.vec refs out of _xcb_out_write up to _xcb_conn_wait.Jamey Sharp
2006-03-07Fix off-by-one error that kept the last byte(s) of the output queue from bein...Jamey Sharp
2006-03-06Off-by-one error in the sequence-wrapping proof, and therefore in the corresp...Jamey Sharp
2006-03-05Implement provably-correct sequence wrap handling. Add flag XCB_REQUEST_DISCA...Jamey Sharp
2006-03-03API/ABI change: XCBSendRequest returns the sequence number instead of using a...Jamey Sharp
2006-03-02Tweak to previous API change: Require that spare iovecs fall before vector[0]...Jamey Sharp
2006-03-02assert() that XCBSendRequest was handed enough space to set opcodes and short...Jamey Sharp