ar- / incron

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

Replace system() with execl() to remove extra forking #69

Open trdenton opened 4 years ago

trdenton commented 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.