aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 71b307fb..a975dca3 100644
--- a/tmux.h
+++ b/tmux.h
@@ -567,6 +567,7 @@ ARRAY_DECL(keylist, int);
struct job {
char *cmd;
pid_t pid;
+ int status;
struct client *client;
@@ -577,6 +578,9 @@ struct job {
void (*freefn)(void *);
void *data;
+ int flags;
+#define JOB_DONE 0x1
+
RB_ENTRY(job) entry;
SLIST_ENTRY(job) lentry;
};