abort.rs |
|
3928 |
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. |
17228 |
error.rs |
|
5489 |
harness.rs |
|
21321 |
id.rs |
|
2640 |
join.rs |
|
11956 |
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. |
11571 |
mod.rs |
|
19025 |
raw.rs |
|
9486 |
state.rs |
|
21635 |
trace |
|
|
waker.rs |
|
2894 |