about summary refs log tree commit diff
path: root/src/libstd/sync
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-12-13 21:14:08 -0800
committerAlex Crichton <alex@alexcrichton.com>2013-12-24 19:59:53 -0800
commit282f3d99a5ad85acbc58c03b5dfcdabf649c0c85 (patch)
treeec391a6b37f99ba63cadb50757040e92f432c1b4 /src/libstd/sync
parent39dbcd7b012da733f378b0fadf1e7d2519dc0d0c (diff)
downloadrust-282f3d99a5ad85acbc58c03b5dfcdabf649c0c85.tar.gz
rust-282f3d99a5ad85acbc58c03b5dfcdabf649c0c85.zip
Test fixes and rebase problems
Note that this removes a number of run-pass tests which are exercising behavior
of the old runtime. This functionality no longer exists and is thoroughly tested
inside of libgreen and libnative. There isn't really the notion of "starting the
runtime" any more. The major notion now is "bootstrapping the initial task".
Diffstat (limited to 'src/libstd/sync')
-rw-r--r--src/libstd/sync/arc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/arc.rs b/src/libstd/sync/arc.rs
index 7b94a3acc2b..b405104c09a 100644
--- a/src/libstd/sync/arc.rs
+++ b/src/libstd/sync/arc.rs
@@ -32,7 +32,7 @@ use vec;
 /// An atomically reference counted pointer.
 ///
 /// Enforces no shared-memory safety.
-#[unsafe_no_drop_flag]
+//#[unsafe_no_drop_flag] FIXME: #9758
 pub struct UnsafeArc<T> {
     priv data: *mut ArcData<T>,
 }