[hackers] [PATCH 3/9] cpu: OS split

From: Quentin Rameau <quinq_AT_fifth.space>
Date: Mon, 30 Apr 2018 15:14:33 +0200

---
 Makefile                     |  2 +-
 components/{ => Linux}/cpu.c | 26 +-------------------------
 components/OpenBSD/cpu.c     | 26 ++++++++++++++++++++++++++
 3 files changed, 28 insertions(+), 26 deletions(-)
 rename components/{ => Linux}/cpu.c (75%)
 create mode 100644 components/OpenBSD/cpu.c
diff --git a/Makefile b/Makefile
index 85eeaba..dee5a4b 100644
--- a/Makefile
+++ b/Makefile
_AT_@ -8,7 +8,7 @@ include config.mk
 REQ = util
 COM =\
 	components/$(OS)/battery \
-	components/cpu\
+	components/$(OS)/cpu \
 	components/datetime\
 	components/disk\
 	components/entropy\
diff --git a/components/cpu.c b/components/Linux/cpu.c
similarity index 75%
rename from components/cpu.c
rename to components/Linux/cpu.c
index 11e2e98..bfc204c 100644
--- a/components/cpu.c
+++ b/components/Linux/cpu.c
_AT_@ -2,13 +2,9 @@
 #include <errno.h>
 #include <stdio.h>
 #include <string.h>
-#if defined(__OpenBSD__)
-#include <sys/sysctl.h>
-#endif
 
-#include "../util.h"
+#include "../../util.h"
 
-#if defined(__linux__)
 const char *
 cpu_freq(void)
 {
_AT_@ -66,23 +62,3 @@ 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
diff --git a/components/OpenBSD/cpu.c b/components/OpenBSD/cpu.c
new file mode 100644
index 0000000..11f1812
--- /dev/null
+++ b/components/OpenBSD/cpu.c
_AT_@ -0,0 +1,26 @@
+/* See LICENSE file for copyright and license details. */
+#include <errno.h>
+#include <stdio.h>
+#include <string.h>
+#include <sys/sysctl.h>
+
+#include "../../util.h"
+
+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);
+}
-- 
2.16.2
Received on Mon Apr 30 2018 - 15:14:33 CEST

This archive was generated by hypermail 2.3.0 : Mon Apr 30 2018 - 15:24:54 CEST