diff options
author | Daniel Friesel <derf@finalrewind.org> | 2017-12-11 10:28:25 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2017-12-11 10:28:25 +0100 |
commit | 2253c912c86b5196e17657ee067abfc7afa4d652 (patch) | |
tree | c10d2722e0c44355bded196209bfba6d5827d06c /src/arch/posix/driver | |
parent | 540974f8f109aa8874f032eddf59819c76eb018e (diff) |
Add basic uptime getter, improve loop support
Diffstat (limited to 'src/arch/posix/driver')
-rw-r--r-- | src/arch/posix/driver/uptime.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/arch/posix/driver/uptime.cc b/src/arch/posix/driver/uptime.cc new file mode 100644 index 0000000..040b51c --- /dev/null +++ b/src/arch/posix/driver/uptime.cc @@ -0,0 +1,11 @@ +#include "driver/uptime.h" +#include <time.h> + +uint64_t Uptime::get() +{ + struct timespec ts; + clock_gettime(CLOCK_REALTIME, &ts); + return (uint64_t)ts.tv_nsec + (1000000ULL * ((uint64_t)ts.tv_sec % 256)); +} + +Uptime uptime; |