[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.524 and 1.525

version 1.524, 2015/06/15 10:58:01 version 1.525, 2015/06/17 16:44:49
Line 714 
Line 714 
   
 /* Scheduled job. */  /* Scheduled job. */
 struct job {  struct job {
           enum {
                   JOB_RUNNING,
                   JOB_DEAD,
                   JOB_CLOSED
           } state;
   
         char            *cmd;          char            *cmd;
         pid_t            pid;          pid_t            pid;
         int              status;          int              status;

Legend:
Removed from v.1.524  
changed lines
  Added in v.1.525