Closed nixpulvis closed 6 years ago
With the way we fork and exec without wait for background jobs at the moment, they will remain zombies until the shell itself is exited.
fork
exec
wait
Zombies are scary and bad. I'm sure the solution will come at the time we implement #6.
We've stopped using the potentially dangerous fork function and instead call fork_and_wait on all jobs, including background jobs.
fork_and_wait
With the way we
fork
andexec
withoutwait
for background jobs at the moment, they will remain zombies until the shell itself is exited.Zombies are scary and bad. I'm sure the solution will come at the time we implement #6.