summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2017-07-14 18:49:07 +0000
committernicm <nicm@openbsd.org>2017-07-14 18:49:07 +0000
commit89b52a5b827ac20b121499500bcdc2fad7f3aa4f (patch)
treea6acdb49dcaa0f376d6d882d824297f03d80b8e9 /usr.bin/tmux/tmux.h
parentSupport out-of-order TX completion notifications (diff)
downloadwireguard-openbsd-89b52a5b827ac20b121499500bcdc2fad7f3aa4f.tar.xz
wireguard-openbsd-89b52a5b827ac20b121499500bcdc2fad7f3aa4f.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 'usr.bin/tmux/tmux.h')
-rw-r--r--usr.bin/tmux/tmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h
index ed4a46eb201..2ebfa6e75db 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.795 2017/07/12 09:24:17 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.796 2017/07/14 18:49:07 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -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 *);