I read a chapter and I didn't like it much. I'm still unclear what the differences is between each memory order. This is my current speculation which I understood after reading the much more simple http://en.cppreference.com/w/cpp/atomic/memory_order
The below is wrong so don't try to learn from it
- memory_order_relaxed: Does not sync but is not ignored when order is done from another mode in a different atomic var
- memory_order_consume: Syncs reading this atomic variable however It doesnt sync relaxed vars written before this. However if the thread uses var X when modifying Y (and releases it). Other threads consuming Y will see X released as well? I don't know if this means this thread pushes out changes of x (and obviously y)
- memory_order_acquire: Syncs reading this atomic variable AND makes sure relaxed vars written before this are synced as well. (does this mean all atomic variables on all threads are synced?)
- memory_order_release: Pushes the atomic store to other threads (but only if they read the var with consume/acquire)
- memory_order_acq_rel: For read/write ops. Does an acquire so you don't modify an old value and releases the changes.
- memory_order_seq_cst: The same thing as acquire release except it forces the updates to be seen in other threads (if
astore with relaxed on another thread. I storebwith seq_cst. A 3rd thread readingawith relax will see changes along withband any other atomic variable?).
I think I understood but correct me if i am wrong. I couldn't find anything that explains it in easy to read english.