diff options
author | Thomas Adam <thomas@xteddy.org> | 2020-03-19 14:01:31 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2020-03-19 14:01:31 +0000 |
commit | 17e4f2394a15602100ad72a052cf9b00e77f208a (patch) | |
tree | a8b6e59db7a20e49afc64cf46a59a27aeb93245b /tmux.h | |
parent | 7595b22e723e1a71ff84ba8d5fa9ad12454f501a (diff) | |
parent | ce61bf931b1af18064ab84542ee8f4a64e498fed (diff) | |
download | rtmux-17e4f2394a15602100ad72a052cf9b00e77f208a.tar.gz rtmux-17e4f2394a15602100ad72a052cf9b00e77f208a.tar.bz2 rtmux-17e4f2394a15602100ad72a052cf9b00e77f208a.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1931,8 +1931,11 @@ typedef void (*job_update_cb) (struct job *); typedef void (*job_complete_cb) (struct job *); typedef void (*job_free_cb) (void *); #define JOB_NOWAIT 0x1 +#define JOB_KEEPWRITE 0x2 +#define JOB_PTY 0x4 struct job *job_run(const char *, struct session *, const char *, - job_update_cb, job_complete_cb, job_free_cb, void *, int); + job_update_cb, job_complete_cb, job_free_cb, void *, int, + int, int); void job_free(struct job *); void job_check_died(pid_t, int); int job_get_status(struct job *); |