abort.rs |
|
4251 |
core.rs |
Core task module.
# Safety
The functions in this module are private to the `task` module. All of them
should be considered `unsafe` to use, but are not marked as such since it
would be too noisy.
Make sure to consult the relevant safety section of each function before
use. |
16989 |
error.rs |
|
4696 |
harness.rs |
|
18906 |
id.rs |
|
3452 |
join.rs |
|
12204 |
list.rs |
This module has containers for storing the tasks spawned on a scheduler. The
`OwnedTasks` container is thread-safe but can only store tasks that
implement Send. The `LocalOwnedTasks` container is not thread safe, but can
store non-Send tasks.
The collections can be closed to prevent adding new tasks during shutdown of
the scheduler with the collection. |
10966 |
mod.rs |
|
17601 |
raw.rs |
|
9486 |
state.rs |
|
19549 |
trace |
|
|
waker.rs |
|
2894 |