From 50219b36fddb211e045330ef4b85c6fd9ecd2f8f Mon Sep 17 00:00:00 2001 From: allow Date: Thu, 9 May 2024 08:16:35 -0500 Subject: [PATCH] add comments about it --- crates/mockingbird/src/deemix.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/crates/mockingbird/src/deemix.rs b/crates/mockingbird/src/deemix.rs index b9be748..9ea5b7f 100644 --- a/crates/mockingbird/src/deemix.rs +++ b/crates/mockingbird/src/deemix.rs @@ -25,6 +25,11 @@ use cutils::{availbytes, bigpipe, max_pipe_size, PipeError}; use tokio::runtime::Handle; use tracing::debug; +// This causes zombie processes to appear +// but are wiped out after being dropped +// generally there is +// N preloaded + Calls will equal the number of +// current zombie procs #[derive(Debug)] pub struct PreloadChildContainer(pub Vec);