about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-07-20 15:16:33 -0700
committerbors <bors@rust-lang.org>2013-07-20 15:16:33 -0700
commitbb8ca1f52cfa59e0040c2c749a1c46048fc6d48d (patch)
treed014a7812c5b97c832692aafc33f29354fa32226 /src
parentc5c0252511e74b74f646b04af126fafb9b18857c (diff)
parent73fccf3e704e7815008c85614d407e1717ee1280 (diff)
downloadrust-bb8ca1f52cfa59e0040c2c749a1c46048fc6d48d.tar.gz
rust-bb8ca1f52cfa59e0040c2c749a1c46048fc6d48d.zip
auto merge of #7910 : brson/rust/rm-fixme, r=graydon
Diffstat (limited to 'src')
-rw-r--r--src/libstd/rt/comm.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/libstd/rt/comm.rs b/src/libstd/rt/comm.rs
index f098f8b2767..c0effdaa94c 100644
--- a/src/libstd/rt/comm.rs
+++ b/src/libstd/rt/comm.rs
@@ -9,11 +9,6 @@
 // except according to those terms.
 
 //! Ports and channels.
-//!
-//! XXX: Carefully consider whether the sequentially consistent
-//! atomics here can be converted to acq/rel. I'm not sure they can,
-//! because there is data being transerred in both directions (the payload
-//! goes from sender to receiver and the task pointer goes the other way).
 
 use option::*;
 use cast;