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

Diff for /src/usr.bin/top/top.c between version 1.96 and 1.97

version 1.96, 2018/11/02 12:46:10 version 1.97, 2018/11/17 23:10:08
Line 69 
Line 69 
   
 static int      max_topn;       /* maximum displayable processes */  static int      max_topn;       /* maximum displayable processes */
   
   extern int ncpu;
   extern int ncpuonline;
   
 extern int      (*proc_compares[])(const void *, const void *);  extern int      (*proc_compares[])(const void *, const void *);
 int order_index;  int order_index;
   
Line 286 
Line 289 
                 }                  }
         }          }
   
         i = getncpu();          i = getncpuonline();
         if (i == -1)          if (i == -1)
                 err(1, NULL);                  err(1, NULL);
   
Line 317 
Line 320 
         char *uname_field = "USERNAME", *header_text, *env_top;          char *uname_field = "USERNAME", *header_text, *env_top;
         const char *(*get_userid)(uid_t, int) = user_from_uid;          const char *(*get_userid)(uid_t, int) = user_from_uid;
         char **preset_argv = NULL, **av = argv;          char **preset_argv = NULL, **av = argv;
         int preset_argc = 0, ac = argc, active_procs, i;          int preset_argc = 0, ac = argc, active_procs, i, ncpuonline_now;
         sigset_t mask, oldmask;          sigset_t mask, oldmask;
         time_t curr_time;          time_t curr_time;
         caddr_t processes;          caddr_t processes;
Line 485 
Line 488 
                 /* get the current stats */                  /* get the current stats */
                 get_system_info(&system_info);                  get_system_info(&system_info);
   
                   /*
                    * don't display stats for offline CPUs: resize if we're
                    * interactive and CPUs have toggled on or offline
                    */
                   if (interactive && !combine_cpus) {
                           for (i = ncpuonline_now = 0; i < ncpu; i++)
                                   if (system_info.cpuonline[i])
                                           ncpuonline_now++;
                           if (ncpuonline_now != ncpuonline) {
                                   max_topn = display_resize();
                                   reset_display();
                                   continue;
                           }
                   }
   
                 /* get the current set of processes */                  /* get the current set of processes */
                 processes = get_process_info(&system_info, &ps,                  processes = get_process_info(&system_info, &ps,
                     proc_compares[order_index]);                      proc_compares[order_index]);
Line 502 
Line 520 
                     ps.threads);                      ps.threads);
   
                 /* display the cpu state percentage breakdown */                  /* display the cpu state percentage breakdown */
                 i_cpustates(system_info.cpustates);                  i_cpustates(system_info.cpustates, system_info.cpuonline);
   
                 /* display memory stats */                  /* display memory stats */
                 i_memory(system_info.memory);                  i_memory(system_info.memory);

Legend:
Removed from v.1.96  
changed lines
  Added in v.1.97