[PATCH 0/7] Xserver-spec: another batch of updates

Jeremy Huddleston jeremyhu at apple.com
Sun Nov 28 09:16:20 PST 2010


Series:
Reviewed-by: Jeremy Huddleston <jeremyhu at apple.com>

Does the documentation include reference for these from inputstr.h which I recall being added in the past year or two:

#define BitIsOn(ptr, bit) (!!(((BYTE *) (ptr))[(bit)>>3] & (1 << ((bit) & 7))))
#define SetBit(ptr, bit)  (((BYTE *) (ptr))[(bit)>>3] |= (1 << ((bit) & 7)))
#define ClearBit(ptr, bit) (((BYTE *)(ptr))[(bit)>>3] &= ~(1 << ((bit) & 7)))
extern _X_EXPORT int CountBits(const uint8_t *mask, int len);


On Nov 28, 2010, at 03:00, Alan Coopersmith wrote:

> These patches follow after the recently submitted patch to remove
> DBE Idioms from the Xserver-spec file - nothing major, mostly minor
> housekeeping to bring the docs more in line with changes to the code.
> 
> [PATCH 1/7] Xserver-spec: Update Memory Management functions
> [PATCH 2/7] Xserver-spec: Replace deprecated resource id lookup functions
> [PATCH 3/7] Xserver-spec: Remove CreateCallbackList
> [PATCH 4/7] Xserver-spec: Update lists of macros
> [PATCH 5/7] Xserver-spec: Fix assorted typos
> [PATCH 6/7] Xserver-spec: Update location of log functions
> [PATCH 7/7] Xserver-spec: Update discussion of font library
> 
> -- 
> 	-Alan Coopersmith-        alan.coopersmith at oracle.com
> 	 Oracle Solaris Platform Engineering: X Window System
> _______________________________________________
> xorg-devel at lists.x.org: X.Org development
> Archives: http://lists.x.org/archives/xorg-devel
> Info: http://lists.x.org/mailman/listinfo/xorg-devel



More information about the xorg-devel mailing list