summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJos Dehaes <jos.dehaes@gmail.com>2021-10-16 19:20:45 +0200
committerJos Dehaes <jos.dehaes@gmail.com>2021-10-16 19:20:45 +0200
commit3ffb21203aa3f4ad978533a3f2b1e67e636381ea (patch)
tree065e38bc9eb7746eb1fd78ccc001bbee0f3642f9
parent70b48710626ba22df496ba741625ce03cba6abbd (diff)
release a bit more - still has negative temps for 2 cores on my system
-rw-r--r--src/osx/btop_collect.cpp10
-rw-r--r--src/osx/sensors.cpp3
2 files changed, 9 insertions, 4 deletions
diff --git a/src/osx/btop_collect.cpp b/src/osx/btop_collect.cpp
index dbe7f3e..12ce949 100644
--- a/src/osx/btop_collect.cpp
+++ b/src/osx/btop_collect.cpp
@@ -225,11 +225,13 @@ namespace Cpu {
bool get_sensors() {
Logger::debug("get_sensors");
got_sensors = false;
- ThermalSensors sensors;
- if (sensors.getSensors().size() > 0) {
- got_sensors = true;
+ if (Config::getB("show_coretemp") and Config::getB("check_temp")) {
+ ThermalSensors sensors;
+ if (sensors.getSensors().size() > 0) {
+ got_sensors = true;
+ }
+ Logger::debug("got sensors:" + std::to_string(got_sensors));
}
- Logger::debug("got sensors:" + std::to_string(got_sensors));
return got_sensors;
}
diff --git a/src/osx/sensors.cpp b/src/osx/sensors.cpp
index 8252238..8451bd1 100644
--- a/src/osx/sensors.cpp
+++ b/src/osx/sensors.cpp
@@ -7,6 +7,8 @@
#include <map>
#include <string>
+#include <btop_tools.hpp>
+
extern "C" {
typedef struct __IOHIDEvent *IOHIDEventRef;
typedef struct __IOHIDServiceClient *IOHIDServiceClientRef;
@@ -60,6 +62,7 @@ CFArrayRef getProductNames(CFDictionaryRef sensors) {
}
CFRelease(name);
}
+ CFRelease(system);
return array;
}