[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.959 and 1.960

version 1.959, 2020/03/17 11:10:12 version 1.960, 2020/03/19 13:43:18
Line 1929 
Line 1929 
 typedef void (*job_complete_cb) (struct job *);  typedef void (*job_complete_cb) (struct job *);
 typedef void (*job_free_cb) (void *);  typedef void (*job_free_cb) (void *);
 #define JOB_NOWAIT 0x1  #define JOB_NOWAIT 0x1
   #define JOB_KEEPWRITE 0x2
   #define JOB_PTY 0x4
 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 *, int);                       job_update_cb, job_complete_cb, job_free_cb, void *, int,
                        int, int);
 void             job_free(struct job *);  void             job_free(struct job *);
 void             job_check_died(pid_t, int);  void             job_check_died(pid_t, int);
 int              job_get_status(struct job *);  int              job_get_status(struct job *);

Legend:
Removed from v.1.959  
changed lines
  Added in v.1.960