It would be a very simple question (could be duplicated), but I was unable to find it.

Win32 API provides a very handy set of atomic operations (as intrinsics) such as InterlockedIncrement which emits lock add x86 code. Also, InterlockedCompareExchange is mapped to lock cmpxchg.

But, I want to do that in Linux with gcc. Since I'm working 64-bit, it's impossible to use inline assembly. Are there intrinsics for gcc?

link|improve this question

You might want to search on "interlocked increment gcc" or "interlocked increment linux" (stackoverflow.com/questions/149710/…) – D.Shawley Jan 24 '10 at 4:28
feedback

1 Answer

up vote 14 down vote accepted

GCC Atomic Built-ins

link|improve this answer
Thanks! __sync_fetch_and_add was the one. – minjang Jan 24 '10 at 5:22
3  
Actually, the equivalent of InterlockedIncrement() would be __sync_add_and_fetch(). __sync_fetch_and_add() returns the previous value, unlike InterlockedIncrement() which returns the new value. – noamtm Nov 15 '10 at 15:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.