An introduction to lockless algorithms
An introduction to lockless algorithms
Posted Feb 20, 2021 7:24 UTC (Sat) by pbonzini (subscriber, #60935)In reply to: An introduction to lockless algorithms by itsmycpu
Parent article: An introduction to lockless algorithms
Posted Feb 20, 2021 9:47 UTC (Sat)
by pebolle (guest, #35204)
[Link]
And that goes for everyone taking time to answering my grumpy questions.
When you're not versed in the vocabulary and habits of a certain field it is very to hard determine whether you're reading something profound, something trivial or just plain nonsense. (I've just finished a book of nearly 300 pages explaining that even physicists can be happily employed while apparently only producing hot air.)
I'll restart the article and hope that I won't get stuck on one of my many, many pet peeves again.
Posted Dec 10, 2021 9:48 UTC (Fri)
by Lurchi (guest, #38509)
[Link]
An introduction to lockless algorithms
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).