Support colored output for CPU temperature on FreeBSD

This commit is contained in:
Baptiste Daroussin 2013-03-19 19:08:35 +01:00 committed by Michael Stapelberg
parent 1ec54a2971
commit 13ebebeb7a

View File

@ -14,6 +14,7 @@
#include <sys/sysctl.h> #include <sys/sysctl.h>
#define TZ_ZEROC 2732 #define TZ_ZEROC 2732
#define TZ_KELVTOC(x) (((x) - TZ_ZEROC) / 10), abs(((x) - TZ_ZEROC) % 10) #define TZ_KELVTOC(x) (((x) - TZ_ZEROC) / 10), abs(((x) - TZ_ZEROC) % 10)
#define TZ_AVG(x) ((x) - TZ_ZEROC) / 10
#endif #endif
#if defined(__OpenBSD__) #if defined(__OpenBSD__)
@ -80,7 +81,16 @@ void print_cpu_temperature_info(yajl_gen json_gen, char *buffer, int zone, const
if (sysctlbyname(path, &sysctl_rslt, &sysctl_size, NULL, 0)) if (sysctlbyname(path, &sysctl_rslt, &sysctl_size, NULL, 0))
goto error; goto error;
if (TZ_AVG(sysctl_rslt) >= max_threshold) {
START_COLOR("color_bad");
colorful_output = true;
}
outwalk += sprintf(outwalk, "%d.%d", TZ_KELVTOC(sysctl_rslt)); outwalk += sprintf(outwalk, "%d.%d", TZ_KELVTOC(sysctl_rslt));
if (colorful_output) {
END_COLOR;
colorful_output = false;
}
#elif defined(__OpenBSD__) #elif defined(__OpenBSD__)
struct sensordev sensordev; struct sensordev sensordev;
struct sensor sensor; struct sensor sensor;