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

Diff for /src/usr.bin/tmux/procname.c between version 1.15 and 1.16

version 1.15, 2016/01/19 15:59:12 version 1.16, 2016/10/10 21:29:23
Line 36 
Line 36 
 #define is_stopped(p) \  #define is_stopped(p) \
         ((p)->p_stat == SSTOP || (p)->p_stat == SDEAD)          ((p)->p_stat == SSTOP || (p)->p_stat == SDEAD)
   
 struct kinfo_proc       *cmp_procs(struct kinfo_proc *, struct kinfo_proc *);  static struct kinfo_proc *cmp_procs(struct kinfo_proc *, struct kinfo_proc *);
 char                    *get_proc_name(int, char *);  char    *get_proc_name(int, char *);
   
 struct kinfo_proc *  static struct kinfo_proc *
 cmp_procs(struct kinfo_proc *p1, struct kinfo_proc *p2)  cmp_procs(struct kinfo_proc *p1, struct kinfo_proc *p2)
 {  {
         if (is_runnable(p1) && !is_runnable(p2))          if (is_runnable(p1) && !is_runnable(p2))

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16