cmpxchg
#define cmpxchg(ptr, ...) \
#define cmpxchg(ptr, old, new) \
#define cmpxchg(ptr, oldval, newval) \
#define cmpxchg(p, old, new) __sync_val_compare_and_swap((p), old, new)
static unsigned long cmpxchg(unsigned long *p, unsigned long expected,