From: Robin Hahling Date: Mon, 4 Aug 2014 14:54:08 +0000 (+0200) Subject: Fix Dragonfly BSD CPU temperature gauge X-Git-Tag: 2.9~16 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d73ca2fa829c722e1ee2a7a0a05a43f4622d6879;p=i3%2Fi3status Fix Dragonfly BSD CPU temperature gauge This patch fixes CPU temperature gauge for DragonFly BSD. Commit 0eeded8 assumed that fetching CPU temperature for DragonFly BSD was similar to that of FreeBSD but this assumption is false. --- diff --git a/src/print_cpu_temperature.c b/src/print_cpu_temperature.c index 51df790..c687474 100644 --- a/src/print_cpu_temperature.c +++ b/src/print_cpu_temperature.c @@ -8,7 +8,7 @@ #include "i3status.h" -#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) +#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) #include #include #include @@ -17,6 +17,13 @@ #define TZ_AVG(x) ((x) - TZ_ZEROC) / 10 #endif +#if defined(__DragonFly__) +#include +#include +#include +#define MUKTOC(v) ((v - 273150000) / 1000000.0) +#endif + #if defined(__OpenBSD__) #include #include @@ -82,7 +89,27 @@ void print_cpu_temperature_info(yajl_gen json_gen, char *buffer, int zone, const colorful_output = false; } } -#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) +#elif defined(__DragonFly__) + struct sensor th_sensor; + size_t th_sensorlen; + + th_sensorlen = sizeof(th_sensor); + + if (sysctlbyname(thermal_zone, &th_sensor, &th_sensorlen, NULL, 0) == -1) { + perror("sysctlbyname"); + goto error; + } + if (MUKTOC(th_sensor.value) >= max_threshold) { + START_COLOR("color_bad"); + colorful_output = true; + } + outwalk += sprintf(outwalk, "%.2f", MUKTOC(th_sensor.value)); + if (colorful_output) { + END_COLOR; + colorful_output = false; + } + +#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) int sysctl_rslt; size_t sysctl_size = sizeof(sysctl_rslt); if (sysctlbyname(thermal_zone, &sysctl_rslt, &sysctl_size, NULL, 0))