mirror of https://github.com/xzeldon/htop.git
Show N/A on unsupported platforms instead of 0KHz
This commit is contained in:
parent
43728b37e7
commit
909bb86f05
|
@ -217,6 +217,8 @@ double Platform_setCPUValues(Meter* mtr, int cpu) {
|
|||
/* Convert to percent and return */
|
||||
total = mtr->values[CPU_METER_NICE] + mtr->values[CPU_METER_NORMAL] + mtr->values[CPU_METER_KERNEL];
|
||||
|
||||
mtr->values[CPU_METER_FREQUENCY] = -1;
|
||||
|
||||
return CLAMP(total, 0.0, 100.0);
|
||||
}
|
||||
|
||||
|
|
|
@ -179,6 +179,9 @@ double Platform_setCPUValues(Meter* this, int cpu) {
|
|||
|
||||
percent = CLAMP(percent, 0.0, 100.0);
|
||||
if (isnan(percent)) percent = 0.0;
|
||||
|
||||
v[CPU_METER_FREQUENCY] = -1;
|
||||
|
||||
return percent;
|
||||
}
|
||||
|
||||
|
|
|
@ -178,6 +178,9 @@ double Platform_setCPUValues(Meter* this, int cpu) {
|
|||
|
||||
percent = CLAMP(percent, 0.0, 100.0);
|
||||
if (isnan(percent)) percent = 0.0;
|
||||
|
||||
v[CPU_METER_FREQUENCY] = -1;
|
||||
|
||||
return percent;
|
||||
}
|
||||
|
||||
|
|
|
@ -233,6 +233,8 @@ double Platform_setCPUValues(Meter* this, int cpu) {
|
|||
|
||||
perc = v[0] + v[1] + v[2] + v[3];
|
||||
|
||||
v[CPU_METER_FREQUENCY] = -1;
|
||||
|
||||
if (perc <= 100. && perc >= 0.) {
|
||||
return perc;
|
||||
} else {
|
||||
|
|
|
@ -203,6 +203,9 @@ double Platform_setCPUValues(Meter* this, int cpu) {
|
|||
|
||||
percent = CLAMP(percent, 0.0, 100.0);
|
||||
if (isnan(percent)) percent = 0.0;
|
||||
|
||||
v[CPU_METER_FREQUENCY] = -1;
|
||||
|
||||
return percent;
|
||||
}
|
||||
|
||||
|
|
|
@ -108,8 +108,11 @@ int Platform_getMaxPid() {
|
|||
}
|
||||
|
||||
double Platform_setCPUValues(Meter* this, int cpu) {
|
||||
(void) this;
|
||||
(void) cpu;
|
||||
|
||||
double* v = this->values;
|
||||
v[CPU_METER_FREQUENCY] = -1;
|
||||
|
||||
return 0.0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue