Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When we talk about atomic variables, such as atomic<> of C++11, is it lock free? Or lock freeness is something different? Say if I manage a queue with atomic variables, will it be slower than a lock free queue?

share|improve this question
It's also answered here: open-std.org/JTC1/sc22/wg21/docs/papers/2007/… it seems they are lock-free. – 0A0D Apr 11 '12 at 13:36

2 Answers

up vote 19 down vote accepted

The standard does not specify if atomic objects are lock-free. On a platform that doesn't provide lock-free atomic operations for a type T, atomic<T> objects may be implemented using a mutex, which wouldn't be lock-free. In that case, any containers using these objects in their implementation would not be lock-free either.

The standard does provide a way to check if an atomic<T> variable is lock-free: you can use var.is_lock_free() or atomic_is_lock_free(&var). These functions are guaranteed to always return the same value for the same type T on a given program execution. For basic types such as int, There are also macros provided (e.g. ATOMIC_INT_LOCK_FREE) which specify if lock-free atomic access to that type is available.

share|improve this answer
Out of interest, are there platforms that don't provide any lockless native atomics, or do you just mean that atomic<T> may not be natively atomic for all sizes of T? I can't see how a platform with no genuine native atomics would implement mutexes in the first place ... – Useless Apr 11 '12 at 13:51
@Useless: it could be that you only have a 1-byte atomic on an embedded platform. So something like std::atomic<char> would be lock-free. However, if 32-bit integers are simulated by doing 4 byte-operations that isn't atomic. So most likely std::atomic<int> won't be lock-free. However, you can make a mutex (e.g. a spin lock) with the byte atomic. – KillianDS Apr 11 '12 at 13:54
@Useless: I meant that lock-free operations would not be supported for all object sizes - I've edited to clarify. I suppose in theory a platform could provide native lock/unlock operations without having lockless atomic operations, but I'm not aware of such platforms. – interjay Apr 11 '12 at 14:02
1  
Some platforms only have atomic exchange instructions. You can use this for a mutex, and std::atomic_flag (which is required to be lock-free), but not for a general atomic (as it can't do a plain load). – Anthony Williams Apr 11 '12 at 16:38

Lock-free usually applies to data structures shared between multiple threads, where the synchronisation mechanism is not mutual exclusion; the intention is that all threads should keep making some kind of progress instead of sleeping on a mutex.

atomic<T> variables don't use locks (at least where T is natively atomic on your platform), but they're not lock-free in the sense above. You might use them in the implementation of a lock-free container, but they're not sufficient on their own.

Eg, atomic<queue<T>> wouldn't suddenly make a normal std::queue into a lock-free data structure. You could however implement a genuinely lock-free atomic_queue<T> whose members were atomic.

Note that even if atomic<int> is natively atomic and not emulated with a lock on your platform, that does not make it lock-free in any interesting way. Plain int is already lock-free in this sense: the atomic<> wrapper gets you explicit control of memory ordering, and access to hardware synchronisation primitives.

share|improve this answer
So a spinlock is lock-free when I implement it using atomic operations? I guess you never yield to the scheduler, but I'm not sure that's what lock-free means in normal use. – Useless Apr 11 '12 at 14:04
I removed my downvote btw. Your edit made more clear what you meant and I think we were discussing on other levels. – KillianDS Apr 11 '12 at 14:18
Cheers - maybe I'm conflating lock-free with non-blocking, it definitely feels ambiguous when talking about the primitives themselves, rather than the algorithm using them. – Useless Apr 11 '12 at 14:23
The term "wait-free" is used to differentiate lock-free algorithms that always make forward progress on all threads (ie. don't block). Spinlocks are certainly lock-free but not wait-free - in fact, the same atomic value check (CAS) is used commonly in lock-free algorithms. – ex0du5 Apr 11 '12 at 16:11
I disagree with your last paragraph: Since plain int is not thread-safe, it is meaningless to say that it is lock-free. But atomic<int> is thread-safe, and so it is certainly meaningful whether it is lock-free or not. – interjay Apr 11 '12 at 16:24
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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