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

Diff for /src/usr.bin/top/machine.c between version 1.107 and 1.108

version 1.107, 2020/07/06 16:27:59 version 1.108, 2020/08/23 21:11:55
Line 414 
Line 414 
     int (*compare) (const void *, const void *))      int (*compare) (const void *, const void *))
 {  {
         int show_idle, show_system, show_threads, show_uid, show_pid, show_cmd;          int show_idle, show_system, show_threads, show_uid, show_pid, show_cmd;
         int hide_uid;          int show_rtable, hide_rtable, hide_uid;
         int total_procs, active_procs;          int total_procs, active_procs;
         struct kinfo_proc **prefp, *pp;          struct kinfo_proc **prefp, *pp;
         int what = KERN_PROC_ALL;          int what = KERN_PROC_ALL;
Line 446 
Line 446 
         show_uid = sel->uid != (uid_t)-1;          show_uid = sel->uid != (uid_t)-1;
         hide_uid = sel->huid != (uid_t)-1;          hide_uid = sel->huid != (uid_t)-1;
         show_pid = sel->pid != (pid_t)-1;          show_pid = sel->pid != (pid_t)-1;
           show_rtable = sel->rtableid != -1;
           hide_rtable = sel->hrtableid != -1;
         show_cmd = sel->command != NULL;          show_cmd = sel->command != NULL;
   
         /* count up process states and get pointers to interesting procs */          /* count up process states and get pointers to interesting procs */
Line 474 
Line 476 
                             (!hide_uid || pp->p_ruid != sel->huid) &&                              (!hide_uid || pp->p_ruid != sel->huid) &&
                             (!show_uid || pp->p_ruid == sel->uid) &&                              (!show_uid || pp->p_ruid == sel->uid) &&
                             (!show_pid || pp->p_pid == sel->pid) &&                              (!show_pid || pp->p_pid == sel->pid) &&
                               (!hide_rtable || pp->p_rtableid != sel->hrtableid) &&
                               (!show_rtable || pp->p_rtableid == sel->rtableid) &&
                             (!show_cmd || cmd_matches(pp, sel->command))) {                              (!show_cmd || cmd_matches(pp, sel->command))) {
                                 *prefp++ = pp;                                  *prefp++ = pp;
                                 active_procs++;                                  active_procs++;

Legend:
Removed from v.1.107  
changed lines
  Added in v.1.108