1
Fork 0

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
This commit is contained in:
Aaron Turon 2014-11-25 08:52:10 -08:00
parent 9b03b72d7f
commit cac133c9a8
6 changed files with 742 additions and 720 deletions

View file

@ -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;