summaryrefslogtreecommitdiffstats
path: root/generic/gettime.h
diff options
context:
space:
mode:
Diffstat (limited to 'generic/gettime.h')
-rw-r--r--generic/gettime.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/generic/gettime.h b/generic/gettime.h
new file mode 100644
index 00000000..fab33da1
--- /dev/null
+++ b/generic/gettime.h
@@ -0,0 +1,19 @@
+#ifndef HEADER_gettime
+#define HEADER_gettime
+/*
+htop - generic/gettime.h
+(C) 2021 htop dev team
+Released under the GNU GPLv2, see the COPYING file
+in the source distribution for its full text.
+*/
+
+#include <stdint.h>
+#include <sys/time.h>
+#include <sys/types.h>
+
+
+void Generic_gettime_realtime(struct timeval* ts, uint64_t* msec);
+
+void Generic_gettime_monotonic(uint64_t* msec);
+
+#endif