aboutsummaryrefslogtreecommitdiff
path: root/src/task/mod.rs
blob: de41dd5dbe8bb408ede653d03d869eda6af2c304 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//! Extra utilities for spawning tasks

#[cfg(tokio_unstable)]
mod join_map;
#[cfg(not(target_os = "wasi"))]
mod spawn_pinned;
#[cfg(not(target_os = "wasi"))]
pub use spawn_pinned::LocalPoolHandle;

#[cfg(tokio_unstable)]
#[cfg_attr(docsrs, doc(cfg(all(tokio_unstable, feature = "rt"))))]
pub use join_map::JoinMap;