cortesi / modd

A flexible developer tool that runs processes and responds to filesystem changes
MIT License
2.8k stars 128 forks source link

Restart child proccesses #36

Closed egorsmkv closed 5 years ago

egorsmkv commented 7 years ago

Some programs create child processes. This utility restarts them too?

cortesi commented 5 years ago

Modd uses process groups - child processes inherit the process group of the parent. Restart signals are sent to the group, so child processes will be signalled too.

egorsmkv commented 5 years ago

Okay. Thanks for the reply, Aldo.