]> Skullheadx's Git Forge - slstatus.git/commitdiff
uptime: OS split
authorQuentin Rameau <quinq@fifth.space>
Mon, 30 Apr 2018 13:14:38 +0000 (15:14 +0200)
committerAaron Marcher <me@drkhsh.at>
Mon, 30 Apr 2018 13:42:08 +0000 (15:42 +0200)
Makefile
components/Linux/uptime.c [new file with mode: 0644]
components/OpenBSD/uptime.c [moved from components/uptime.c with 63% similarity]

index c06e81d3c2fe36f4b3ffef88934cbd0948740628..067ef57e00ca03b6cf263b49a70ad309e81afb7f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ COM =\
        components/run_command\
        components/$(OS)/swap \
        components/$(OS)/temperature \
-       components/uptime\
+       components/$(OS)/uptime \
        components/user\
        components/volume\
        components/wifi
diff --git a/components/Linux/uptime.c b/components/Linux/uptime.c
new file mode 100644 (file)
index 0000000..e7afc8e
--- /dev/null
@@ -0,0 +1,24 @@
+/* See LICENSE file for copyright and license details. */
+#include <errno.h>
+#include <stdio.h>
+#include <string.h>
+#include <sys/sysinfo.h>
+
+#include "../../util.h"
+
+const char *
+uptime(void)
+{
+       int h;
+       int m;
+       int uptime = 0;
+       struct sysinfo info;
+
+       sysinfo(&info);
+       uptime = info.uptime;
+
+       h = uptime / 3600;
+       m = (uptime - h * 3600) / 60;
+
+       return bprintf("%dh %dm", h, m);
+}
similarity index 63%
rename from components/uptime.c
rename to components/OpenBSD/uptime.c
index debe4cb4696bcc499e5d7d0d7028fc341f820628..637e2e0f376454922e0a59121cf2e463c8d48fa5 100644 (file)
@@ -2,33 +2,11 @@
 #include <errno.h>
 #include <stdio.h>
 #include <string.h>
-#if defined(__linux__)
-#include <sys/sysinfo.h>
-#elif defined(__OpenBSD__)
 #include <sys/sysctl.h>
 #include <sys/time.h>
-#endif
 
-#include "../util.h"
+#include "../../util.h"
 
-#if defined(__linux__)
-const char *
-uptime(void)
-{
-       int h;
-       int m;
-       int uptime = 0;
-       struct sysinfo info;
-
-       sysinfo(&info);
-       uptime = info.uptime;
-
-       h = uptime / 3600;
-       m = (uptime - h * 3600) / 60;
-
-       return bprintf("%dh %dm", h, m);
-}
-#elif defined(__OpenBSD__)
 const char *
 uptime(void)
 {
@@ -60,4 +38,3 @@ uptime(void)
 
        return bprintf("%dh %dm", h, m);
 }
-#endif