aboutsummaryrefslogtreecommitdiff
path: root/src/clock33.c
diff options
context:
space:
mode:
authorpk33 <pk33@pk33.space>2024-11-11 18:06:18 +0100
committerpk33 <pk33@pk33.space>2024-11-11 18:06:18 +0100
commit5a54774474f43ae29716751d6415563a59b92c7d (patch)
tree151e865845b09b85992d8be20d8cc771d4110448 /src/clock33.c
parent146a683b8d8315ef15dc1c9286f0983834f48d88 (diff)
downloadengine33-5a54774474f43ae29716751d6415563a59b92c7d.tar.gz
tidying up and basic input
Diffstat (limited to 'src/clock33.c')
-rw-r--r--src/clock33.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/clock33.c b/src/clock33.c
new file mode 100644
index 0000000..2fe0d3c
--- /dev/null
+++ b/src/clock33.c
@@ -0,0 +1,19 @@
+#include "sys/time.h"
+
+#include "clock33.h"
+
+
+Size clock_get_us( void )
+{
+ static struct timeval tv;
+ gettimeofday( &tv, 0 );
+ return (tv.tv_sec * 1000000) + tv.tv_usec;
+}
+
+f64 clock_get_s_hires( void )
+{
+ static struct timeval tv;
+ gettimeofday( &tv, 0 );
+ return (f64)((f64)tv.tv_sec + ((f64)tv.tv_usec / 1000000));
+}
+