mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-10 06:47:34 +00:00
auto merge of #11570 : derekchiang/rust/fix-rt-docs, r=alexcrichton
This commit is contained in:
commit
6516b303b5
@ -202,7 +202,7 @@ Some benefits of using libgreen are:
|
|||||||
|
|
||||||
M:N threading is built upon the concept of a pool of M OS threads (which
|
M:N threading is built upon the concept of a pool of M OS threads (which
|
||||||
libgreen refers to as schedulers), able to run N Rust tasks. This abstraction is
|
libgreen refers to as schedulers), able to run N Rust tasks. This abstraction is
|
||||||
encompassed in libgreen's [`SchedPool`][schedpool] type. This type allows for
|
encompassed in libgreen's [`SchedPool`](green/struct.SchedPool.html) type. This type allows for
|
||||||
fine-grained control over the pool of schedulers which will be used to run Rust
|
fine-grained control over the pool of schedulers which will be used to run Rust
|
||||||
tasks.
|
tasks.
|
||||||
|
|
||||||
|
@ -41,16 +41,14 @@ out of `rt` as development proceeds.
|
|||||||
Several modules in `core` are clients of `rt`:
|
Several modules in `core` are clients of `rt`:
|
||||||
|
|
||||||
* `std::task` - The user-facing interface to the Rust task model.
|
* `std::task` - The user-facing interface to the Rust task model.
|
||||||
* `std::task::local_data` - The interface to local data.
|
* `std::local_data` - The interface to local data.
|
||||||
* `std::gc` - The garbage collector.
|
* `std::gc` - The garbage collector.
|
||||||
* `std::unstable::lang` - Miscellaneous lang items, some of which rely on `std::rt`.
|
* `std::unstable::lang` - Miscellaneous lang items, some of which rely on `std::rt`.
|
||||||
* `std::condition` - Uses local data.
|
* `std::condition` - Uses local data.
|
||||||
* `std::cleanup` - Local heap destruction.
|
* `std::cleanup` - Local heap destruction.
|
||||||
* `std::io` - In the future `std::io` will use an `rt` implementation.
|
* `std::io` - In the future `std::io` will use an `rt` implementation.
|
||||||
* `std::logging`
|
* `std::logging`
|
||||||
* `std::pipes`
|
|
||||||
* `std::comm`
|
* `std::comm`
|
||||||
* `std::stackwalk`
|
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user