[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.127 and 1.128

version 1.127, 2009/10/10 17:19:38 version 1.128, 2009/10/10 18:42:14
Line 578 
Line 578 
         void            *data;          void            *data;
   
         RB_ENTRY(job)    entry;          RB_ENTRY(job)    entry;
           SLIST_ENTRY(job) lentry;
 };  };
 RB_HEAD(jobs, job);  RB_HEAD(jobs, job);
   SLIST_HEAD(joblist, job);
   
 /* Screen selection. */  /* Screen selection. */
 struct screen_sel {  struct screen_sel {
Line 1199 
Line 1201 
 void   *options_get_data(struct options *, const char *);  void   *options_get_data(struct options *, const char *);
   
 /* job.c */  /* job.c */
 extern struct jobs jobs_tree;  extern struct joblist all_jobs;
 int     job_cmp(struct job *, struct job *);  int     job_cmp(struct job *, struct job *);
 RB_PROTOTYPE(jobs, job, entry, job_cmp);  RB_PROTOTYPE(jobs, job, entry, job_cmp);
 void    job_tree_init(struct jobs *);  void    job_tree_init(struct jobs *);

Legend:
Removed from v.1.127  
changed lines
  Added in v.1.128