Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/atomics.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ fn main() {
// ... distribute lock to threads somehow ...

// Try to acquire the lock by setting it to true
while lock.compare_and_swap(false, true, Ordering::Acquire) { }
while lock.compare_exchange(false, true, Ordering::Acquire, Ordering::Relaxed).is_err() { }
// broke out of the loop, so we successfully acquired the lock!

// ... scary data accesses ...
Expand Down