summaryrefslogtreecommitdiffstats
path: root/freebsd
diff options
context:
space:
mode:
authorAndy Pilate <cubox@lif.cubox.me>2016-04-28 21:42:18 +0200
committerAndy Pilate <cubox@lif.cubox.me>2016-04-28 21:42:18 +0200
commit5776cb56b480df564e84ca457f347aea4e2d56fb (patch)
treeff3ebc3d99265734439af56f302212bd499b16e7 /freebsd
parent306c5443ae0aec17c26f194ef624b6c4cc5b30de (diff)
Revert "Fix FreeBSD CPU% calculation"
This reverts commit f554f08fa92f8440faa853b5fa4d588829959c8a.
Diffstat (limited to 'freebsd')
-rw-r--r--freebsd/Platform.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/freebsd/Platform.c b/freebsd/Platform.c
index 4185a8b5..f02daa5a 100644
--- a/freebsd/Platform.c
+++ b/freebsd/Platform.c
@@ -163,15 +163,15 @@ double Platform_setCPUValues(Meter* this, int cpu) {
double percent;
double* v = this->values;
- v[CPU_METER_NICE] = cpuData->nicePercent * cpus;
- v[CPU_METER_NORMAL] = cpuData->userPercent * cpus;
+ v[CPU_METER_NICE] = cpuData->nicePercent;
+ v[CPU_METER_NORMAL] = cpuData->userPercent;
if (this->pl->settings->detailedCPUTime) {
- v[CPU_METER_KERNEL] = cpuData->systemPercent * cpus;
- v[CPU_METER_IRQ] = cpuData->irqPercent * cpus;
+ v[CPU_METER_KERNEL] = cpuData->systemPercent;
+ v[CPU_METER_IRQ] = cpuData->irqPercent;
Meter_setItems(this, 4);
percent = v[0]+v[1]+v[2]+v[3];
} else {
- v[2] = cpuData->systemAllPercent * cpus;
+ v[2] = cpuData->systemAllPercent;
Meter_setItems(this, 3);
percent = v[0]+v[1]+v[2];
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy