Y
Hacker News
new
|
ask
|
show
|
jobs
by
pjdesno
76 days ago
What's not guaranteed for "normal" loads and stores on many architectures is the order in which writes become visible to other CPU cores.
1 comments
wat10000
76 days ago
Right, that's what the various memory ordering constants are for in C++ atomics, and other languages will likely have an equivalent. On such architectures, those will emit special instructions or barriers.
link