summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-03-23 15:09:09 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-03-23 15:09:09 -0700
commit2153c581ef66de1537286b58b1b323d24c25d07f (patch)
tree1ec75f5284c1641e854dbd7d0d4ca5c58a61e907 /src/libstd/lib.rs
parentb97e1cc28e0d3fe6a745a02a7c1750564a090f34 (diff)
parent6bd3ab0d8140053475a901ad4e2e80e98955bcb0 (diff)
downloadrust-2153c581ef66de1537286b58b1b323d24c25d07f.tar.gz
rust-2153c581ef66de1537286b58b1b323d24c25d07f.zip
rollup merge of #23557: aturon/rfc-909
This commit implements [RFC 909](https://github.com/rust-lang/rfcs/pull/909):

The `std::thread_local` module is now deprecated, and its contents are
available directly in `std::thread` as `LocalKey`, `LocalKeyState`, and
`ScopedKey`.

The macros remain exactly as they were, which means little if any code
should break. Nevertheless, this is technically a:

[breaking-change]

Closes #23547
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs23
1 files changed, 8 insertions, 15 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 1488c7969f6..fbec96e9310 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -252,30 +252,23 @@ pub mod num;
 /* Runtime and platform support */
 
 #[macro_use]
-pub mod thread_local;
+pub mod thread;
 
+pub mod collections;
 pub mod dynamic_lib;
+pub mod env;
 pub mod ffi;
-pub mod old_io;
-pub mod io;
 pub mod fs;
+pub mod io;
 pub mod net;
+pub mod old_io;
+pub mod old_path;
 pub mod os;
-pub mod env;
 pub mod path;
-pub mod old_path;
 pub mod process;
 pub mod rand;
-pub mod time;
-
-/* Common data structures */
-
-pub mod collections;
-
-/* Threads and communication */
-
-pub mod thread;
 pub mod sync;
+pub mod time;
 
 #[macro_use]
 #[path = "sys/common/mod.rs"] mod sys_common;
@@ -308,7 +301,7 @@ mod std {
     pub use rt; // used for panic!()
     pub use vec; // used for vec![]
     pub use cell; // used for tls!
-    pub use thread_local; // used for thread_local!
+    pub use thread; // used for thread_local!
     pub use marker;  // used for tls!
     pub use ops; // used for bitflags!