summaryrefslogtreecommitdiffstats
path: root/src/executor/mod.rs
blob: 896676c8129647748007b536ef3255c8a5914063 (plain)
1
2
3
4
5
6
7
8
//! Task execution utilities.
//!
//! This module only contains `current_thread`, an executor for multiplexing
//! many tasks on a single thread.

pub mod current_thread;
mod scheduler;
mod sleep;