Investigating Zombie Reaping Race Condition #13
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Location:
crates/chvm-init/src/signal.rs:6-25Issue:
The guest
initspawns a separate reaper thread that waits for SIGCHLD. However, there's a race between:This can result in zombie processes if the child exits before the
sigwait()is active.