summaryrefslogtreecommitdiffstats
path: root/netbsd/Platform.h
diff options
context:
space:
mode:
authorfraggerfox <santhosh.raju@gmail.com>2021-04-09 07:48:52 +0530
committerBenBE <BenBE@geshi.org>2021-06-26 12:18:37 +0200
commitdb986236843ac87c89ea74cd13ab4aa8d90cf935 (patch)
treed02227c34aeabec54a8717423cce81a1983a94f8 /netbsd/Platform.h
parent4b49de44a8659674c6e92ba70e0c1930b2b9315b (diff)
Sync changes from master and fix minor warnings
Diffstat (limited to 'netbsd/Platform.h')
-rw-r--r--netbsd/Platform.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/netbsd/Platform.h b/netbsd/Platform.h
index f034e816..15129f6a 100644
--- a/netbsd/Platform.h
+++ b/netbsd/Platform.h
@@ -19,10 +19,15 @@ in the source distribution for its full text.
#include "Process.h"
#include "ProcessLocksScreen.h"
#include "SignalsPanel.h"
+#include "generic/gettime.h"
#include "generic/hostname.h"
#include "generic/uname.h"
+/* There are no Long Options for NetBSD as of now. */
+#define PLATFORM_LONG_OPTIONS \
+ // End of list
+
extern const ProcessField Platform_defaultFields[];
/* see /usr/include/sys/signal.h */
@@ -70,4 +75,18 @@ static inline void Platform_getRelease(char** string) {
*string = Generic_uname();
}
+static inline void Platform_longOptionsUsage(ATTR_UNUSED const char* name) { }
+
+static inline bool Platform_getLongOption(ATTR_UNUSED int opt, ATTR_UNUSED int argc, ATTR_UNUSED char** argv) {
+ return false;
+}
+
+static inline void Platform_gettime_realtime(struct timeval* tv, uint64_t* msec) {
+ Generic_gettime_realtime(tv, msec);
+}
+
+static inline void Platform_gettime_monotonic(uint64_t* msec) {
+ Generic_gettime_monotonic(msec);
+}
+
#endif

© 2014-2024 Faster IT GmbH | imprint | privacy policy