ar- / incron

cron-like daemon which handles filesystem events
Other
229 stars 51 forks source link

zombie process #22

Closed javitorl closed 7 years ago

javitorl commented 9 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

ronjouch commented 7 years ago

Confirming just-merged PR #23 / 08d8e7a fixes the problem for me. Thanks! 👍

ar- commented 7 years ago

fixed