The gcc-built-in atomic operation: http://gcc.gnu.org/onlinedocs/gcc/_005f_005fatomic-Builtins.html
I need an atomic operation:An add opration with CAS. It's a little like the gcc built-in function __atomic_compare_exchange_n, but different:
the function prototype just like this :
bool atomic_compare_add(int &ptr, int &expected, int val)
the function execute atomicly :
if (ptr != expected) { ptr = ptr + val; return true; } else { return false; }
The function I want is different from __atomic_compare_exchange_n and __atomic_add_fetch, __atomic_compare_exchange_n means if (*ptr == *expected) { *ptr = desire; return true; } else { return false; }
and __atomic_add_fetch means *ptr = *ptr + val; return *ptr;
.
How to implement that operation on Linux gcc/g++?
Thanks everyone, I've got one solution: