mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-21 00:00:10 +02:00
16 lines
389 B
Rust
16 lines
389 B
Rust
//! 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, JoinMapKeys};
|
|
|
|
pub mod task_tracker;
|
|
pub use task_tracker::TaskTracker;
|