rust-lang / nomicon

The Dark Arts of Advanced and Unsafe Rust Programming
https://doc.rust-lang.org/nomicon/
Apache License 2.0
1.75k stars 258 forks source link

Update rc decrement snipped #316

Closed kendru closed 2 years ago

kendru commented 2 years ago

The atomic decrement to rc should be performed with an ordering of Ordering::Release rather than ordering::Relaxed to interact correctly with the fence. The code in the full Drop implementation at the bottom of the section is correct.