aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2017-07-14 18:49:07 +0000
committernicm <nicm>2017-07-14 18:49:07 +0000
commit932f6cfbfc98ab2d6e593f7fa3473a6bb3269967 (patch)
tree458fd646c28b3655f2ca1ca6a228188cc49ca2e0 /tmux.h
parent2678fe53f57c4a3222780c76a7201f4300058e59 (diff)
downloadrtmux-932f6cfbfc98ab2d6e593f7fa3473a6bb3269967.tar.gz
rtmux-932f6cfbfc98ab2d6e593f7fa3473a6bb3269967.tar.bz2
rtmux-932f6cfbfc98ab2d6e593f7fa3473a6bb3269967.zip
Because ignore SIGCHLD early, letting signal_del restore it doesn't work
correctly, so set it explicitly back to default (and the others for good measure).
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 34a3572a..855a1dff 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1499,7 +1499,7 @@ struct tmuxproc *proc_start(const char *);
void proc_loop(struct tmuxproc *, int (*)(void));
void proc_exit(struct tmuxproc *);
void proc_set_signals(struct tmuxproc *, void(*)(int));
-void proc_clear_signals(struct tmuxproc *);
+void proc_clear_signals(struct tmuxproc *, int);
struct tmuxpeer *proc_add_peer(struct tmuxproc *, int,
void (*)(struct imsg *, void *), void *);
void proc_remove_peer(struct tmuxpeer *);