Thank you for your work on this package!
Is there a reason you use SIGQUIT for kill and killAndWait? The default behavior on Linux is to terminate the process and dump core on SIGQUIT. I think it might make more sense to use SIGTERM, which is the default for kill(1). Would you be inclined to accept a PR to switch to SIGTERM?
Thank you for your work on this package!
Is there a reason you use
SIGQUITforkillandkillAndWait? The default behavior on Linux is to terminate the process and dump core onSIGQUIT. I think it might make more sense to useSIGTERM, which is the default forkill(1). Would you be inclined to accept a PR to switch toSIGTERM?