summary refs log tree commit diff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 1179415..ea6964e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -121,7 +121,7 @@ impl Default for Config {
 // Wait for all children to exit. Return true if they have all exited, false
 // otherwise.
 fn wait_all_children() -> bool {
-    const CHILD_WAIT_MAX_ITER: isize = 10;
+    const CHILD_WAIT_MAX_ITER: isize = 100;
     const CHILD_WAIT_MS: u64 = 10;
     for _ in 0..CHILD_WAIT_MAX_ITER {
         loop {