diff options
| author | Aaron Turon <aturon@mozilla.com> | 2014-11-25 08:52:10 -0800 |
|---|---|---|
| committer | Aaron Turon <aturon@mozilla.com> | 2014-12-18 23:31:35 -0800 |
| commit | cac133c9a86a4687755aeb44908e3fbb2bb35fc2 (patch) | |
| tree | 91736549f0fd24edb154fa21a54d8bfdca418ef0 /src/libstd/lib.rs | |
| parent | 9b03b72d7fb82f07d35e7dcda02754c6da90ae58 (diff) | |
| download | rust-cac133c9a86a4687755aeb44908e3fbb2bb35fc2.tar.gz rust-cac133c9a86a4687755aeb44908e3fbb2bb35fc2.zip | |
Introduce std::thread
Also removes: * `std::task` * `std::rt::task` * `std::rt::thread` Notes for the new API are in a follow-up commit. Closes #18000
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index d7f331b6c23..a0939999c7c 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -227,9 +227,9 @@ pub mod time; pub mod collections; pub mod hash; -/* Tasks and communication */ +/* Threads and communication */ -pub mod task; +pub mod thread; pub mod sync; pub mod comm; |
