mirror of
https://github.com/aristocratos/btop.git
synced 2026-01-27 07:21:36 -05:00
release a bit more - still has negative temps for 2 cores on my system
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user