[BACK]Return to tmux.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/tmux.h between version 1.820 and 1.821

version 1.820, 2018/02/28 08:55:44 version 1.821, 2018/03/08 08:09:10
Line 622 
Line 622 
                 JOB_CLOSED                  JOB_CLOSED
         } state;          } state;
   
           int                      flags;
   #define JOB_NOWAIT 0x1
   
         char                    *cmd;          char                    *cmd;
         pid_t                    pid;          pid_t                    pid;
         int                      status;          int                      status;
Line 1649 
Line 1652 
 /* job.c */  /* job.c */
 extern struct joblist all_jobs;  extern struct joblist all_jobs;
 struct job      *job_run(const char *, struct session *, const char *,  struct job      *job_run(const char *, struct session *, const char *,
                      job_update_cb, job_complete_cb, job_free_cb, void *);                       job_update_cb, job_complete_cb, job_free_cb, void *, int);
 void             job_free(struct job *);  void             job_free(struct job *);
 void             job_died(struct job *, int);  void             job_died(struct job *, int);
   

Legend:
Removed from v.1.820  
changed lines
  Added in v.1.821