Closed
Description
see http://static.rust-lang.org/doc/0.6/core/task.html#enum-schedmode / https://github.com/mozilla/rust/blob/bdc182cc41c27/src/libcore/task/mod.rs#L82
rustdoc generates markdown like
#### Variants
* `DefaultScheduler` - Run task on the default scheduler
* `CurrentScheduler` - Run task on the current scheduler
* `ExistingScheduler(Scheduler)` - Run task on a specific scheduler
* `PlatformThread` - Tasks are scheduled on the main OS thread
The main OS thread is the thread used to launch the runtime which,
in most cases, is the process's initial thread as created by the OS.
* `SingleThreaded` - All tasks run in the same OS thread
* `ThreadPerCore` - Tasks are distributed among available CPUs
* `ThreadPerTask` - Each task runs in its own OS thread
* `ManualThreads(uint)` - Tasks are distributed among a fixed number of OS threads
so the list ends with the PlatformThread
line and the rest is a run-on paragraph that happens to have asterisks in it.
Metadata
Metadata
Assignees
Labels
No labels