Revert "custom: reap zombie processes on termination"

This reverts commit 1c1a39f597.
This commit is contained in:
Alex 2023-11-03 14:06:50 +01:00
parent c6a9b63189
commit e7c2e90236
1 changed files with 0 additions and 4 deletions

View File

@ -112,10 +112,6 @@ inline FILE* open(const std::string& cmd, int& pid) {
execlp("/bin/sh", "sh", "-c", cmd.c_str(), (char*)0);
exit(0);
} else {
reap_mtx.lock();
reap.push_back(child_pid);
reap_mtx.unlock();
::close(fd[1]);
}
pid = child_pid;