top: change number of emulated cpus from four to eight

With the addition of NUMA/Node support and the ability
to emulate such support even in the absence of libnuma
and numa.h, the maximum number of cpus top can emulate
was increased to make numa emulation more interesting.

( whew, that's an awful lot of "emulates", me thinks )

Reference(s):
commit 8d989c68c0

Signed-off-by: Jim Warner <james.warner@comcast.net>
This commit is contained in:
Jim Warner
2013-04-14 00:00:00 -05:00
committed by Craig Small
parent 53fd7dd1ed
commit 3ac09447e5
2 changed files with 6 additions and 6 deletions

View File

@@ -2363,7 +2363,7 @@ static CPU_t *cpus_refresh (CPU_t *cpus) {
#else
for (i = 0; i < sumSLOT && i < Screen_rows; i++) {
#endif
#ifdef PRETEND4CPUS
#ifdef PRETEND8CPUS
rewind(fp);
fgets(buf, sizeof(buf), fp);
#endif
@@ -2384,7 +2384,7 @@ static CPU_t *cpus_refresh (CPU_t *cpus) {
// this is for symmetry only, it's not currently required
cpus[i].cur.tot = cpus[sumSLOT].cur.tot;
#endif
#ifdef PRETEND4CPUS
#ifdef PRETEND8CPUS
cpus[i].id = i;
#endif
#ifdef NUMA_ENABLED
@@ -2631,7 +2631,7 @@ static void sysinfo_refresh (int forced) {
meminfo();
mem_secs = cur_secs;
}
#ifndef PRETEND4CPUS
#ifndef PRETEND8CPUS
/*** hotplug_acclimated ***/
if (300 <= cur_secs - cpu_secs) {
cpuinfo();
@@ -3202,8 +3202,8 @@ static void before (char *me) {
initialize_nls();
// establish cpu particulars
#ifdef PRETEND4CPUS
smp_num_cpus = 4;
#ifdef PRETEND8CPUS
smp_num_cpus = 8;
#endif
Cpu_faux_tot = smp_num_cpus;
Cpu_States_fmts = N_unq(STATE_lin2x4_fmt);