summaryrefslogtreecommitdiffstats
path: root/unsupported
diff options
context:
space:
mode:
authorArnavion <arnavion@gmail.com>2019-08-10 17:17:45 -0700
committerArnavion <arnavion@gmail.com>2019-08-10 17:17:45 -0700
commit909bb86f05c20f0ec6f5d55994065a293932ce21 (patch)
treea74598e116cbbdb0c5da973734affe596bd9d777 /unsupported
parent43728b37e76e4ed32b04c133ca55e27116cdfa06 (diff)
Show N/A on unsupported platforms instead of 0KHz
Diffstat (limited to 'unsupported')
-rw-r--r--unsupported/Platform.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/unsupported/Platform.c b/unsupported/Platform.c
index ba844191..b5e50c3f 100644
--- a/unsupported/Platform.c
+++ b/unsupported/Platform.c
@@ -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;
}

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