We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a0a980 commit ad576c3Copy full SHA for ad576c3
kitty/child.c
@@ -102,7 +102,7 @@ spawn(PyObject *self UNUSED, PyObject *args) {
102
sigset_t signals = {0};
103
struct sigaction act = {.sa_handler=SIG_DFL};
104
#define SA(which) { if (sigaction(which, &act, NULL) != 0) exit_on_err("sigaction() in child process failed"); }
105
- SA(SIGINT); SA(SIGTERM); SA(SIGCHLD); SA(SIGPIPE);
+ SA(SIGINT); SA(SIGTERM); SA(SIGCHLD); SA(SIGPIPE); SA(SIGUSR1); SA(SIGUSR2);
106
#ifdef SIGXFSZ
107
SA(SIGXFSZ);
108
#endif
0 commit comments