summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/os/os_time.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/auxiliary/os/os_time.h')
-rw-r--r--src/gallium/auxiliary/os/os_time.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/gallium/auxiliary/os/os_time.h b/src/gallium/auxiliary/os/os_time.h
index 54101a1f546..517de9b0474 100644
--- a/src/gallium/auxiliary/os/os_time.h
+++ b/src/gallium/auxiliary/os/os_time.h
@@ -51,17 +51,19 @@ extern "C" {
/*
- * Get the current time in microseconds from an unknown base.
+ * Get the current time in nanoseconds from an unknown base.
*/
int64_t
-os_time_get(void);
+os_time_get_nano(void);
/*
- * Get the current time in nanoseconds from an unknown base.
+ * Get the current time in microseconds from an unknown base.
*/
-uint64_t
-os_time_get_nano(void);
+static INLINE int64_t
+os_time_get(void) {
+ return os_time_get_nano() * 1000;
+}
/*