Go to the documentation of this file.00001 #ifndef __CAS_h__
00002 #define __CAS_h__
00003
00018 extern __inline__ int cas (volatile unsigned int *ref, unsigned int exp, unsigned int val) {
00019 return __sync_bool_compare_and_swap(ref, exp, val);
00020 }
00021 #endif
00022