diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-12-09 19:23:36 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-12-09 19:23:36 +0000 |
commit | 9a184bf853688eae450c938dee953c7c1bce0d0c (patch) | |
tree | 45e332ed1e595342e418e088629e7282707d7436 /usr.bin/tmux/tmux.h | |
parent | 8388ddea0c592f19abc7a6dc6557f32d4d9bf1c7 (diff) |
Add pane_dead_status for exit status of dead panes.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index f1afd79a4fc..87d5831335b 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.483 2014/12/02 23:19:45 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.484 2014/12/09 19:23:35 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -890,6 +890,7 @@ struct window_pane { pid_t pid; char tty[TTY_NAME_MAX]; + int status; u_int changes; struct event changes_timer; |