Handle SIGINT

Gracefully exit on SIGINT, like we do for SIGTERM.
master
Simon Ser 4 years ago committed by Brian Ashworth
parent 45aa5c104c
commit 6991ac8c70

@ -367,6 +367,7 @@ int main(int argc, char **argv) {
// handle SIGTERM signals
signal(SIGTERM, sig_handler);
signal(SIGINT, sig_handler);
// prevent ipc from crashing sway
signal(SIGPIPE, SIG_IGN);

Loading…
Cancel
Save