aboutsummaryrefslogtreecommitdiffstats
path: root/src/wait/mod.rs
diff options
context:
space:
mode:
authorJonas Maier <>2026-03-11 12:30:07 +0100
committerJonas Maier <>2026-03-11 12:30:07 +0100
commit15501132916dfbc24f23b619e6d5408f258fc0d9 (patch)
treea77e27bfc139415baf7faf09eeaefec360db9423 /src/wait/mod.rs
parentb881eec59118bc630b64378476f4d5ada2bf5968 (diff)
downloadpish-15501132916dfbc24f23b619e6d5408f258fc0d9.tar.gz
can wait for threads & processes with a timeout now
Diffstat (limited to 'src/wait/mod.rs')
-rw-r--r--src/wait/mod.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wait/mod.rs b/src/wait/mod.rs
new file mode 100644
index 0000000..63a083b
--- /dev/null
+++ b/src/wait/mod.rs
@@ -0,0 +1,5 @@
+mod child;
+mod thread;
+
+pub use child::*;
+pub use thread::*;