diff options
author | pk33 <pk33@pk33.space> | 2024-11-11 18:06:18 +0100 |
---|---|---|
committer | pk33 <pk33@pk33.space> | 2024-11-11 18:06:18 +0100 |
commit | 5a54774474f43ae29716751d6415563a59b92c7d (patch) | |
tree | 151e865845b09b85992d8be20d8cc771d4110448 /src/clock33.c | |
parent | 146a683b8d8315ef15dc1c9286f0983834f48d88 (diff) | |
download | engine33-5a54774474f43ae29716751d6415563a59b92c7d.tar.gz |
tidying up and basic input
Diffstat (limited to 'src/clock33.c')
-rw-r--r-- | src/clock33.c | 19 |
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)); +} + |