diff options
| author | Geoff Yoerger <geoffreyiy1@gmail.com> | 2017-01-19 20:43:43 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-19 20:43:43 -0600 |
| commit | 02ead27c935887b148e58df999dbd8fb9be9d789 (patch) | |
| tree | b21353cac58b36785f562a44be5424fa96e4f431 /src/libcore/sync | |
| parent | c4c9ff2f00975e00ba56c1b1d309ff1f278f3760 (diff) | |
| download | rust-02ead27c935887b148e58df999dbd8fb9be9d789.tar.gz rust-02ead27c935887b148e58df999dbd8fb9be9d789.zip | |
Into item level docs (enum Ordering)
Diffstat (limited to 'src/libcore/sync')
| -rw-r--r-- | src/libcore/sync/atomic.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libcore/sync/atomic.rs b/src/libcore/sync/atomic.rs index ff7abb45d7b..bd1d00486ec 100644 --- a/src/libcore/sync/atomic.rs +++ b/src/libcore/sync/atomic.rs @@ -142,6 +142,8 @@ unsafe impl<T> Sync for AtomicPtr<T> {} /// /// Rust's memory orderings are [the same as /// LLVM's](http://llvm.org/docs/LangRef.html#memory-model-for-concurrent-operations). +/// +/// For more information see the [nomicon](https://doc.rust-lang.org/nomicon/atomics.html). #[stable(feature = "rust1", since = "1.0.0")] #[derive(Copy, Clone, Debug)] pub enum Ordering { |
