summaryrefslogtreecommitdiff
path: root/include/qemu
diff options
context:
space:
mode:
authorAlex Bligh <alex@alex.org.uk>2013-08-21 16:03:01 +0100
committerStefan Hajnoczi <stefanha@redhat.com>2013-08-22 19:10:55 +0200
commit55a197dab4d26e6dcd2b539320b7daf68cf8c967 (patch)
treec65a729c8b27205a578b61a2d34b125ab9f01e73 /include/qemu
parent63111b69cce420886ba7bfb8e367bd6c6969c1b6 (diff)
downloadqemu-55a197dab4d26e6dcd2b539320b7daf68cf8c967.tar.gz
aio / timers: Add qemu_clock_get_ms and qemu_clock_get_ms
Add utility functions qemu_clock_get_ms and qemu_clock_get_us Signed-off-by: Alex Bligh <alex@alex.org.uk> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include/qemu')
-rw-r--r--include/qemu/timer.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/include/qemu/timer.h b/include/qemu/timer.h
index 21f481034d..5c30f91bbe 100644
--- a/include/qemu/timer.h
+++ b/include/qemu/timer.h
@@ -118,6 +118,34 @@ static inline int64_t qemu_clock_get_ns(QEMUClockType type)
}
/**
+ * qemu_clock_get_ms;
+ * @type: the clock type
+ *
+ * Get the millisecond value of a clock with
+ * type @type
+ *
+ * Returns: the clock value in milliseconds
+ */
+static inline int64_t qemu_clock_get_ms(QEMUClockType type)
+{
+ return qemu_clock_get_ns(type) / SCALE_MS;
+}
+
+/**
+ * qemu_clock_get_us;
+ * @type: the clock type
+ *
+ * Get the microsecond value of a clock with
+ * type @type
+ *
+ * Returns: the clock value in microseconds
+ */
+static inline int64_t qemu_clock_get_us(QEMUClockType type)
+{
+ return qemu_clock_get_ns(type) / SCALE_US;
+}
+
+/**
* qemu_clock_has_timers:
* @clock: the clock to operate on
*