Closed javitorl closed 7 years ago
Every time a program is executed due to an event , a zombie process is left in the system. I think it is quite easy to fix by adding something like:
int status; waitpid(pid, &status, 0);
in the parent section of the fork at usertable.cpp
Confirming just-merged PR #23 / 08d8e7a fixes the problem for me. Thanks! 👍
fixed
Every time a program is executed due to an event , a zombie process is left in the system. I think it is quite easy to fix by adding something like:
int status; waitpid(pid, &status, 0);
in the parent section of the fork at usertable.cpp