(no title)
codahale | 10 years ago
The code you write is either thread-safe, used in a single-threaded context, or a pinless grenade.
codahale | 10 years ago
The code you write is either thread-safe, used in a single-threaded context, or a pinless grenade.
pcwalton|10 years ago
My favorite is the libdispatch abuse of cpuid to flood the pipeline on Intel CPUs for this problem: https://www.mikeash.com/pyblog/friday-qa-2014-06-06-secrets-...
But really, take Coda's advice. If you aren't synchronizing your reads, you can basically just assume your code is broken.
twic|10 years ago
https://en.m.wikipedia.org/wiki/Lamport%27s_bakery_algorithm
Thread safety without synchronisation primitives. I'm not sure it's ever actually a good idea to use it, though.
EDIT: unless you count a fence as a synchronisation primitive.