summaryrefslogtreecommitdiffstats
path: root/src/executor/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/executor/mod.rs')
-rw-r--r--src/executor/mod.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/executor/mod.rs b/src/executor/mod.rs
new file mode 100644
index 00000000..896676c8
--- /dev/null
+++ b/src/executor/mod.rs
@@ -0,0 +1,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;