File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ Some benefits of using libgreen are:
202
202
203
203
M: N threading is built upon the concept of a pool of M OS threads (which
204
204
libgreen refers to as schedulers), able to run N Rust tasks. This abstraction is
205
- encompassed in libgreen's [ ` SchedPool ` ] [ schedpool ] type. This type allows for
205
+ encompassed in libgreen's [ ` SchedPool ` ] ( green/struct.SchedPool.html ) type. This type allows for
206
206
fine-grained control over the pool of schedulers which will be used to run Rust
207
207
tasks.
208
208
Original file line number Diff line number Diff line change @@ -41,16 +41,14 @@ out of `rt` as development proceeds.
41
41
Several modules in `core` are clients of `rt`:
42
42
43
43
* `std::task` - The user-facing interface to the Rust task model.
44
- * `std::task:: local_data` - The interface to local data.
44
+ * `std::local_data` - The interface to local data.
45
45
* `std::gc` - The garbage collector.
46
46
* `std::unstable::lang` - Miscellaneous lang items, some of which rely on `std::rt`.
47
47
* `std::condition` - Uses local data.
48
48
* `std::cleanup` - Local heap destruction.
49
49
* `std::io` - In the future `std::io` will use an `rt` implementation.
50
50
* `std::logging`
51
- * `std::pipes`
52
51
* `std::comm`
53
- * `std::stackwalk`
54
52
55
53
*/
56
54
You can’t perform that action at this time.
0 commit comments