Skip to content

Commit c0a5b99

Browse files
authored
Revert previous commit
1 parent dfa9736 commit c0a5b99

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/libcore/sync/atomic.rs

-4
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,6 @@ unsafe impl<T> Sync for AtomicPtr<T> {}
140140
/// to be moved either before or after the atomic operation; on the other end
141141
/// "relaxed" atomics allow all reorderings.
142142
///
143-
/// If you are confused or don't have enough time to research which ordering to use, use `SeqCst`.
144-
/// Of all the options it has the most unsurpising effect (see the nomicon for details. [1])
145-
/// The downside is you miss out on several optimizations the other orderings offer.
146-
///
147143
/// Rust's memory orderings are [the same as
148144
/// LLVM's](http://llvm.org/docs/LangRef.html#memory-model-for-concurrent-operations).
149145
///

0 commit comments

Comments
 (0)