Skip to content

Commit

Permalink
Merge pull request aristocratos#601 from joske/cleanup
Browse files Browse the repository at this point in the history
[macos] don't check /sys on macos
  • Loading branch information
aristocratos committed Aug 26, 2023
2 parents 8a49d8c + 2217cbe commit 9c8af4d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/osx/btop_collect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ namespace Cpu {
vector<string> available_fields = {"total"};
vector<string> available_sensors = {"Auto"};
cpu_info current_cpu;
fs::path freq_path = "/sys/devices/system/cpu/cpufreq/policy0/scaling_cur_freq";
bool got_sensors = false, cpu_temp_only = false;
int core_offset = 0;

Expand Down Expand Up @@ -164,7 +163,6 @@ namespace Shared {
arg_max = sysconf(_SC_ARG_MAX);

//? Init for namespace Cpu
if (not fs::exists(Cpu::freq_path) or access(Cpu::freq_path.c_str(), R_OK) == -1) Cpu::freq_path.clear();
Cpu::current_cpu.core_percent.insert(Cpu::current_cpu.core_percent.begin(), Shared::coreCount, {});
Cpu::current_cpu.temp.insert(Cpu::current_cpu.temp.begin(), Shared::coreCount + 1, {});
Cpu::core_old_totals.insert(Cpu::core_old_totals.begin(), Shared::coreCount, 0);
Expand Down

0 comments on commit 9c8af4d

Please sign in to comment.