aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2015-06-17 18:01:07 +0100
committerThomas Adam <thomas@xteddy.org>2015-06-17 18:01:07 +0100
commita584e11d6bb5d2ab0e0476f6c1a821e865597053 (patch)
treea9c8b6c9acef5c112ee321758422d08e1915cdd1 /tmux.h
parent9fdc3a069a55aad638b2985cd5427a1853335f24 (diff)
parent021cdbe1c0111951a1f63b09b41c9e3db3793db5 (diff)
downloadrtmux-a584e11d6bb5d2ab0e0476f6c1a821e865597053.tar.gz
rtmux-a584e11d6bb5d2ab0e0476f6c1a821e865597053.tar.bz2
rtmux-a584e11d6bb5d2ab0e0476f6c1a821e865597053.zip
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 2601e9a5..b0d009d8 100644
--- a/tmux.h
+++ b/tmux.h
@@ -718,6 +718,12 @@ struct options {
/* Scheduled job. */
struct job {
+ enum {
+ JOB_RUNNING,
+ JOB_DEAD,
+ JOB_CLOSED
+ } state;
+
char *cmd;
pid_t pid;
int status;