[BACK]Return to cmd-server-info.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/Attic/cmd-server-info.c between version 1.12 and 1.13

version 1.12, 2009/10/26 21:42:04 version 1.13, 2009/11/01 23:20:37
Line 56 
Line 56 
         struct tty_code                 *code;          struct tty_code                 *code;
         struct tty_term_code_entry      *ent;          struct tty_term_code_entry      *ent;
         struct utsname                   un;          struct utsname                   un;
           struct job                      *job;
         struct grid                     *gd;          struct grid                     *gd;
         struct grid_line                *gl;          struct grid_line                *gl;
         u_int                            i, j, k;          u_int                            i, j, k;
Line 177 
Line 178 
                 }                  }
         }          }
         ctx->print(ctx, "%s", "");          ctx->print(ctx, "%s", "");
   
           ctx->print(ctx, "Jobs:");
           SLIST_FOREACH(job, &all_jobs, lentry) {
                   ctx->print(ctx, "%s [fd=%d, pid=%d, status=%d, flags=0x%x]",
                       job->cmd, job->fd, job->pid, job->status, job->flags);
           }
   
         return (0);          return (0);
 }  }

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13