mprocs icon indicating copy to clipboard operation
mprocs copied to clipboard

Consider changing default stop signal

Open pvolok opened this issue 1 year ago • 0 comments

Currently default stop signal is SIGTERM on Unix and TerminateProcess on Windows.

On Windows, we should use some softer way that will allow proper termination. Perhaps sending 0x03 (Ctrl-C in ASCII) char?

On Unix some programs don't react to SIGTERM. For example, remix dev doesn't react to SIGTERM. On the other hand, nvim (and maybe zsh) will not stop if 0x03 char is sent to stdin.

pvolok avatar Nov 09 '23 00:11 pvolok