We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ed9ffce + 114301f commit 828a864Copy full SHA for 828a864
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