mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
Rollup merge of #33534 - dns2utf8:atomic_docs, r=GuillaumeGomez
Simplify text This way it should be clear: Any number of other threads have this guaranty not just one other thread.
This commit is contained in:
commit
0ceb073038
@ -142,13 +142,13 @@ pub enum Ordering {
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
Relaxed,
|
||||
/// When coupled with a store, all previous writes become visible
|
||||
/// to another thread that performs a load with `Acquire` ordering
|
||||
/// to the other threads that perform a load with `Acquire` ordering
|
||||
/// on the same value.
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
Release,
|
||||
/// When coupled with a load, all subsequent loads will see data
|
||||
/// written before a store with `Release` ordering on the same value
|
||||
/// in another thread.
|
||||
/// in other threads.
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
Acquire,
|
||||
/// When coupled with a load, uses `Acquire` ordering, and with a store
|
||||
|
Loading…
Reference in New Issue
Block a user