Xinqi Bao's Git

Revert component-split
[slstatus.git] / components / cpu.c
index 4a4a80b..11e2e98 100644 (file)
@@ -1,9 +1,14 @@
 /* See LICENSE file for copyright and license details. */
+#include <errno.h>
 #include <stdio.h>
 #include <string.h>
+#if defined(__OpenBSD__)
+#include <sys/sysctl.h>
+#endif
 
 #include "../util.h"
 
+#if defined(__linux__)
 const char *
 cpu_freq(void)
 {
@@ -61,3 +66,23 @@ cpu_iowait(void)
 
        return bprintf("%d", perc);
 }
+#elif defined(__OpenBSD__)
+const char *
+cpu_freq(void)
+{
+       int freq, mib[2];
+       size_t size;
+
+       mib[0] = CTL_HW;
+       mib[1] = HW_CPUSPEED;
+
+       size = sizeof(freq);
+
+       if (sysctl(mib, 2, &freq, &size, NULL, 0) == -1) {
+               fprintf(stderr, "sysctl 'HW_CPUSPEED': %s\n", strerror(errno));
+               return NULL;
+       }
+
+       return bprintf("%d", freq);
+}
+#endif