1
0
mirror of https://github.com/tmux/tmux.git synced 2025-04-09 10:28:49 +00:00

Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam 2020-08-04 12:01:18 +01:00
commit 8d7e127b17

1
proc.c
View File

@ -239,6 +239,7 @@ proc_set_signals(struct tmuxproc *tp, void (*signalcb)(int))
sigaction(SIGTSTP, &sa, NULL);
sigaction(SIGTTIN, &sa, NULL);
sigaction(SIGTTOU, &sa, NULL);
sigaction(SIGQUIT, &sa, NULL);
signal_set(&tp->ev_sigint, SIGINT, proc_signal_cb, tp);
signal_add(&tp->ev_sigint, NULL);