summary refs log tree commit diff
path: root/src/libstd/task/mod.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-08-10 20:06:39 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-08-27 21:29:11 -0700
commit06a7195e9e9cea81854c39ce2c1376fe588bc1b0 (patch)
treef71efbc05e978adb420e11fadd397a41683e379f /src/libstd/task/mod.rs
parent578e68047736167239c52fa1aba0347011ff1bc3 (diff)
downloadrust-06a7195e9e9cea81854c39ce2c1376fe588bc1b0.tar.gz
rust-06a7195e9e9cea81854c39ce2c1376fe588bc1b0.zip
Consolidate local_data implementations, and cleanup
This moves all local_data stuff into the `local_data` module and only that
module alone. It also removes a fair amount of "super-unsafe" code in favor of
just vanilla code generated by the compiler at the same time.

Closes #8113
Diffstat (limited to 'src/libstd/task/mod.rs')
-rw-r--r--src/libstd/task/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/task/mod.rs b/src/libstd/task/mod.rs
index c0b331c52ee..b52dd3a906b 100644
--- a/src/libstd/task/mod.rs
+++ b/src/libstd/task/mod.rs
@@ -52,7 +52,6 @@ use util;
 #[cfg(test)] use ptr;
 #[cfg(test)] use task;
 
-mod local_data_priv;
 pub mod spawn;
 
 /**