=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.820 retrieving revision 1.821 diff -c -r1.820 -r1.821 *** src/usr.bin/tmux/tmux.h 2018/02/28 08:55:44 1.820 --- src/usr.bin/tmux/tmux.h 2018/03/08 08:09:10 1.821 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.820 2018/02/28 08:55:44 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.821 2018/03/08 08:09:10 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 622,627 **** --- 622,630 ---- JOB_CLOSED } state; + int flags; + #define JOB_NOWAIT 0x1 + char *cmd; pid_t pid; int status; *************** *** 1649,1655 **** /* job.c */ extern struct joblist all_jobs; struct job *job_run(const char *, struct session *, const char *, ! job_update_cb, job_complete_cb, job_free_cb, void *); void job_free(struct job *); void job_died(struct job *, int); --- 1652,1658 ---- /* job.c */ extern struct joblist all_jobs; struct job *job_run(const char *, struct session *, const char *, ! job_update_cb, job_complete_cb, job_free_cb, void *, int); void job_free(struct job *); void job_died(struct job *, int);