Add a note about unavoidable zombie processes

This has to be fixed in Boost.Process
This commit is contained in:
Robbert van der Helm
2021-01-17 15:38:20 +01:00
parent 197aadad69
commit 7c3e28e482
+2
View File
@@ -128,6 +128,8 @@ bool IndividualHost::running() {
void IndividualHost::terminate() {
host.terminate();
// NOTE: This leaves a zombie, because Boost.Process will actually not call
// `wait()` after we have terminated the process.
host.wait();
}