=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.959 retrieving revision 1.960 diff -u -r1.959 -r1.960 --- src/usr.bin/tmux/tmux.h 2020/03/17 11:10:12 1.959 +++ src/usr.bin/tmux/tmux.h 2020/03/19 13:43:18 1.960 @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.959 2020/03/17 11:10:12 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.960 2020/03/19 13:43:18 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1929,8 +1929,11 @@ 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 *);