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?
|
|
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, The standard does provide a way to check if an |
|||||||||||
|
|
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.
Eg, Note that even if |
|||||||||||
|