xchg
#define xchg(v, n) __sync_lock_test_and_set(v, n)
#define xchg(a,b,type) do { type t; t=a; a=b; b=t; } while (0)
#undef xchg