summary refs log tree commit diff
path: root/src/libstd/rt
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2013-07-19 14:35:46 -0700
committerBrian Anderson <banderson@mozilla.com>2013-07-19 14:36:05 -0700
commit73fccf3e704e7815008c85614d407e1717ee1280 (patch)
tree95ab206d29ae8ace440377ed996aa7c8fd53bdd6 /src/libstd/rt
parent0d04aa78e5e8a7e3c48141028137c1a69e7e32ee (diff)
downloadrust-73fccf3e704e7815008c85614d407e1717ee1280.tar.gz
rust-73fccf3e704e7815008c85614d407e1717ee1280.zip
std::rt: Remove an obsolete FIXME. #7757
Diffstat (limited to 'src/libstd/rt')
-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 fba61711297..551240af076 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;