free-sw/xcb/libxcb
18 years agoXCB has not had tracing features for a long time: remove the remnants.
Jamey Sharp [Sun, 26 Feb 2006 07:27:47 +0000 (23:27 -0800)]
XCB has not had tracing features for a long time: remove the remnants.

18 years agoRearrange an if statement that's been bothering me.
Jamey Sharp [Sun, 26 Feb 2006 07:26:55 +0000 (23:26 -0800)]
Rearrange an if statement that's been bothering me.

18 years agoCoalesce _xcb_writev into _xcb_out_write and simplify.
Jamey Sharp [Fri, 24 Feb 2006 10:17:36 +0000 (02:17 -0800)]
Coalesce _xcb_writev into _xcb_out_write and simplify.

18 years agoTake advantage of Requires and *.private fields for a more accurate pkg-config file.
Jamey Sharp [Fri, 24 Feb 2006 09:56:18 +0000 (01:56 -0800)]
Take advantage of Requires and *.private fields for a more accurate pkg-config file.

18 years agoMove _xcb_set_fd_flags to xcb_conn.c and make it static. xcb_util.c now has only...
Jamey Sharp [Fri, 24 Feb 2006 09:50:48 +0000 (01:50 -0800)]
Move _xcb_set_fd_flags to xcb_conn.c and make it static. xcb_util.c now has only public functions.

18 years agoMove _xcb_read_block to xcb_in.c and make it static. Change calls in xcb_conn.c to...
Jamey Sharp [Fri, 24 Feb 2006 09:40:45 +0000 (01:40 -0800)]
Move _xcb_read_block to xcb_in.c and make it static. Change calls in xcb_conn.c to _xcb_in_read_block instead.

18 years agoRemove XCB_CEIL and use a simpler definition for XCB_PAD.
Jamey Sharp [Fri, 24 Feb 2006 09:17:03 +0000 (01:17 -0800)]
Remove XCB_CEIL and use a simpler definition for XCB_PAD.

18 years agoQuit using "-include config.h": use #ifdef HAVE_CONFIG_H etc. like everyone else.
Jamey Sharp [Fri, 24 Feb 2006 09:04:48 +0000 (01:04 -0800)]
Quit using "-include config.h": use #ifdef HAVE_CONFIG_H etc. like everyone else.

18 years agoCoalesce readn into _xcb_in_read and simplify.
Jamey Sharp [Fri, 24 Feb 2006 08:59:08 +0000 (00:59 -0800)]
Coalesce readn into _xcb_in_read and simplify.

18 years agoMove _xcb_readn to xcb_in.c and make it static. Minor change to _xcb_read_block to...
Jamey Sharp [Fri, 24 Feb 2006 08:48:18 +0000 (00:48 -0800)]
Move _xcb_readn to xcb_in.c and make it static. Minor change to _xcb_read_block to not depend on _xcb_readn.

18 years agoBugfix: protect the output queue from being written while another thread is flushing it.
Jamey Sharp [Fri, 24 Feb 2006 08:25:34 +0000 (00:25 -0800)]
Bugfix: protect the output queue from being written while another thread is flushing it.

18 years agoSimplify: Always use writev. (In _xcb_out_flush, convert the output queue to a single...
Jamey Sharp [Fri, 24 Feb 2006 08:02:43 +0000 (00:02 -0800)]
Simplify: Always use writev. (In _xcb_out_flush, convert the output queue to a single iovec if needed.)

18 years agoFactor padding out of _xcb_out_write_block and into its callers, XCBSendRequest and...
Jamey Sharp [Fri, 24 Feb 2006 06:41:59 +0000 (22:41 -0800)]
Factor padding out of _xcb_out_write_block and into its callers, XCBSendRequest and write_setup.
This requires dynamically allocating memory in XCBSendRequest, but this
malloc/free pair turns out to cause a 30% speed hit for the 'x11perf -noop'
test -- so for the moment I use alloca where available and fall back to malloc
on other platforms. Later I think I'll change the contract of XCBSendRequest
so the caller is responsible for memory allocation, because the caller ought
to always be able to stack-allocate here.

18 years agoAdd XCBGetQueuedRequestRead for Xlib that does no syscalls, just returns whatever...
Jamey Sharp [Fri, 24 Feb 2006 01:50:53 +0000 (17:50 -0800)]
Add XCBGetQueuedRequestRead for Xlib that does no syscalls, just returns whatever XCB already knows about.

18 years agoMinor performance fix: Change the contract on XCBGetRequestSent so that it does not...
Jamey Sharp [Thu, 23 Feb 2006 23:29:40 +0000 (15:29 -0800)]
Minor performance fix: Change the contract on XCBGetRequestSent so that it does not waste time re-locking. This is for Xlib, and Xlib has already locked.

18 years agoMinor performance fix: Only rearrange buffers for BIG-REQUESTs.
Jamey Sharp [Thu, 23 Feb 2006 22:57:46 +0000 (14:57 -0800)]
Minor performance fix: Only rearrange buffers for BIG-REQUESTs.

18 years agoMove request_written update back where it was for now: doing it early can cause XCBWa...
Jamey Sharp [Thu, 23 Feb 2006 22:32:11 +0000 (14:32 -0800)]
Move request_written update back where it was for now: doing it early can cause XCBWaitForReply to wrongly believe that the request has been flushed. Eventually, we should fix bug #6021.

18 years agoRemove _xcb_assert_valid_sequence. One test is trivially true, and the other may...
Jamey Sharp [Thu, 23 Feb 2006 22:30:08 +0000 (14:30 -0800)]
Remove _xcb_assert_valid_sequence. One test is trivially true, and the other may be temporarily violated without anything bad happening.

18 years agoMove _xcb_write and _xcb_writev to xcb_out.c and make them static, since only _xcb_ou...
Jamey Sharp [Thu, 23 Feb 2006 20:48:27 +0000 (12:48 -0800)]
Move _xcb_write and _xcb_writev to xcb_out.c and make them static, since only _xcb_out_write calls them.

18 years agoIgnore test byproducts.
Jamey Sharp [Thu, 23 Feb 2006 20:34:08 +0000 (12:34 -0800)]
Ignore test byproducts.

18 years agoMore return value changes, and make _xcb_in_read_packet static since it is not called...
Jamey Sharp [Thu, 23 Feb 2006 20:15:09 +0000 (12:15 -0800)]
More return value changes, and make _xcb_in_read_packet static since it is not called from outside xcb_in.c.

18 years agoMore return value changes.
Jamey Sharp [Thu, 23 Feb 2006 19:50:12 +0000 (11:50 -0800)]
More return value changes.

18 years agoMake the return value of _xcb_conn_wait boolean, instead of syscall-like.
Jamey Sharp [Thu, 23 Feb 2006 18:17:40 +0000 (10:17 -0800)]
Make the return value of _xcb_conn_wait boolean, instead of syscall-like.

18 years agoBugfix: move request_written update *before* _xcb_conn_wait in _xcb_out_flush. Otherw...
Jamey Sharp [Thu, 23 Feb 2006 07:38:16 +0000 (23:38 -0800)]
Bugfix: move request_written update *before* _xcb_conn_wait in _xcb_out_flush. Otherwise a reply may be read before we record that we have sent the request, and then XCB gets... confused.

18 years agoRemove USE_THREAD_ASSERT compile option. _xcb_conn_wait can no longer be re-entered...
Jamey Sharp [Thu, 23 Feb 2006 07:11:36 +0000 (23:11 -0800)]
Remove USE_THREAD_ASSERT compile option. _xcb_conn_wait can no longer be re-entered, since we have no callback hooks now.

18 years agoRemove vestiges of adjacent request combining implementation. It is very dead.
Jamey Sharp [Thu, 23 Feb 2006 07:09:29 +0000 (23:09 -0800)]
Remove vestiges of adjacent request combining implementation. It is very dead.

18 years agoControl debugging, optimization, and warning flags all independently.
Jamey Sharp [Mon, 20 Feb 2006 08:41:39 +0000 (00:41 -0800)]
Control debugging, optimization, and warning flags all independently.

18 years agoMerge branch 'master' of git+ssh://git.freedesktop.org/git/xcb
Jamey Sharp [Sun, 19 Feb 2006 07:57:18 +0000 (23:57 -0800)]
Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcb

18 years agoUpdate .gitignores for .o files and autofoo stuff.
Jamey Sharp [Sun, 19 Feb 2006 07:57:14 +0000 (23:57 -0800)]
Update .gitignores for .o files and autofoo stuff.

18 years agoAdd missing entries to .gitignore files.
Eric Anholt [Sun, 19 Feb 2006 07:05:32 +0000 (23:05 -0800)]
Add missing entries to .gitignore files.

18 years agoMerge branch 'master' of git+ssh://anholt@git.freedesktop.org/git/xcb
Eric Anholt [Sun, 19 Feb 2006 06:57:42 +0000 (22:57 -0800)]
Merge branch 'master' of git+ssh://anholt@git.freedesktop.org/git/xcb

18 years agoMove .cvsignore to .gitignore.
Eric Anholt [Sun, 19 Feb 2006 06:56:03 +0000 (22:56 -0800)]
Move .cvsignore to .gitignore.

18 years agoQuit defining _XOPEN_SOURCE. We never needed it...
Jamey Sharp [Sun, 19 Feb 2006 04:03:35 +0000 (20:03 -0800)]
Quit defining _XOPEN_SOURCE. We never needed it...

18 years agoRemove the old ChangeLog file. GIT makes that obsolete.
Jamey Sharp [Sun, 19 Feb 2006 03:23:33 +0000 (19:23 -0800)]
Remove the old ChangeLog file. GIT makes that obsolete.

18 years agoWorkaround X server bug, fd.o #3210: if a GLXGetFBConfigs request is sent, fix the...
Jamey Sharp [Sun, 19 Feb 2006 02:12:40 +0000 (18:12 -0800)]
Workaround X server bug, fd.o #3210: if a GLXGetFBConfigs request is sent, fix the length field in the reply.

18 years agoRemove xcl and CVSROOT.
Josh Triplett [Sun, 19 Feb 2006 00:49:41 +0000 (16:49 -0800)]
Remove xcl and CVSROOT.