Open trdenton opened 4 years ago
The behaviour of forking and then calling system() results in a fork-of-a-fork and is unaccounted for. This causes extra incrond processes to pile up. Replaced system() with its equivalent exec, sans fork.
The behaviour of forking and then calling system() results in a fork-of-a-fork and is unaccounted for. This causes extra incrond processes to pile up. Replaced system() with its equivalent exec, sans fork.