Questions tagged [memory-model]
Questions about formal memory models for programming languages, specifying things such as the effects of concurrent memory accesses, and the possibility of memory reordering.
1 question
8
votes
0
answers
162
views
Non-trivial implementations of consume memory ordering
In the C++ memory model through C++23, one of the memory ordering types for loads is memory_order_consume. The intent of this was to expose the feature that most ...