We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf636c2 commit 114301fCopy full SHA for 114301f
src/libcore/atomic.rs
@@ -21,9 +21,9 @@
21
//!
22
//! Each method takes an `Ordering` which represents the strength of
23
//! the memory barrier for that operation. These orderings are the
24
-//! same as [C++11 atomic orderings][1].
+//! same as [LLVM atomic orderings][1].
25
26
-//! [1]: http://gcc.gnu.org/wiki/Atomic/GCCMM/AtomicSync
+//! [1]: http://llvm.org/docs/LangRef.html#memory-model-for-concurrent-operations
27
28
//! Atomic variables are safe to share between threads (they implement `Sync`)
29
//! but they do not themselves provide the mechanism for sharing. The most
0 commit comments