summaryrefslogtreecommitdiff
path: root/include/arch/posix/driver/uptime.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/arch/posix/driver/uptime.h')
-rw-r--r--include/arch/posix/driver/uptime.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/arch/posix/driver/uptime.h b/include/arch/posix/driver/uptime.h
new file mode 100644
index 0000000..93711b9
--- /dev/null
+++ b/include/arch/posix/driver/uptime.h
@@ -0,0 +1,19 @@
+#ifndef UPTIME_H
+#define UPTIME_H
+
+#include <stdint.h>
+
+class Uptime {
+ private:
+ Uptime(const Uptime &copy);
+
+ public:
+ Uptime () {}
+ uint64_t get_s();
+ uint64_t get_us();
+ uint64_t get_cycles();
+};
+
+extern Uptime uptime;
+
+#endif