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

Diff for /src/usr.bin/tmux/job.c between version 1.50 and 1.51

version 1.50, 2018/08/23 15:45:05 version 1.51, 2018/08/23 18:39:12
Line 37 
Line 37 
 static void     job_write_callback(struct bufferevent *, void *);  static void     job_write_callback(struct bufferevent *, void *);
 static void     job_error_callback(struct bufferevent *, short, void *);  static void     job_error_callback(struct bufferevent *, short, void *);
   
   /* A single job. */
 struct job {  struct job {
         enum {          enum {
                 JOB_RUNNING,                  JOB_RUNNING,
Line 62 
Line 63 
 };  };
   
 /* All jobs list. */  /* All jobs list. */
 LIST_HEAD(joblist, job) all_jobs = LIST_HEAD_INITIALIZER(all_jobs);  static LIST_HEAD(joblist, job) all_jobs = LIST_HEAD_INITIALIZER(all_jobs);
   
 /* Start a job running, if it isn't already. */  /* Start a job running, if it isn't already. */
 struct job *  struct job *

Legend:
Removed from v.1.50  
changed lines
  Added in v.1.51