aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include/time.h
diff options
context:
space:
mode:
Diffstat (limited to 'extras/mini-os/include/time.h')
-rw-r--r--extras/mini-os/include/time.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/mini-os/include/time.h b/extras/mini-os/include/time.h
index ac83df855b..5d6ed672d1 100644
--- a/extras/mini-os/include/time.h
+++ b/extras/mini-os/include/time.h
@@ -29,7 +29,7 @@
* The other macros are for convenience to approximate short intervals
* of real time into system time
*/
-typedef s64 s_time_t;
+typedef int64_t s_time_t;
#define NOW() ((s_time_t)monotonic_clock())
#define SECONDS(_s) (((s_time_t)(_s)) * 1000000000UL )
#define TENTHS(_ts) (((s_time_t)(_ts)) * 100000000UL )
@@ -57,7 +57,7 @@ void init_time(void);
void fini_time(void);
s_time_t get_s_time(void);
s_time_t get_v_time(void);
-u64 monotonic_clock(void);
+uint64_t monotonic_clock(void);
void block_domain(s_time_t until);
#endif /* _MINIOS_TIME_H_ */