An introduction to lockless algorithms
An introduction to lockless algorithms
Posted Dec 10, 2021 9:48 UTC (Fri) by Lurchi (guest, #38509)In reply to: An introduction to lockless algorithms by pbonzini
Parent article: An introduction to lockless algorithms
a.x = 1; datum = message;
| |
| happens before |
v v
message = &a; datum->x
I think the left "happens before" arrow should not be there (the right one of course is correct, due to the data dependency).
