[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.129 and 1.130

version 1.129, 2009/10/11 07:01:10 version 1.130, 2009/10/11 07:20:16
Line 567 
Line 567 
 struct job {  struct job {
         char            *cmd;          char            *cmd;
         pid_t            pid;          pid_t            pid;
           int              status;
   
         struct client   *client;          struct client   *client;
   
Line 576 
Line 577 
         void            (*callbackfn)(struct job *);          void            (*callbackfn)(struct job *);
         void            (*freefn)(void *);          void            (*freefn)(void *);
         void            *data;          void            *data;
   
           int              flags;
   #define JOB_DONE 0x1
   
         RB_ENTRY(job)    entry;          RB_ENTRY(job)    entry;
         SLIST_ENTRY(job) lentry;          SLIST_ENTRY(job) lentry;

Legend:
Removed from v.1.129  
changed lines
  Added in v.1.130