auxilary/os: Add DragonFly BSD support in os_get_total_physical_memory.
[mesa.git] / src / gallium / auxiliary / os / os_time.h
index 7e0f67a76b0d9aa63963191d216ee7b413503f07..4fab03cc6712134712094d9a1e758a818a9490a7 100644 (file)
@@ -51,10 +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 microseconds from an unknown base.
+ */
+static INLINE int64_t
+os_time_get(void) {
+    return os_time_get_nano() / 1000;
+}
 
 
 /*