]> git.proxmox.com Git - qemu.git/commitdiff
add more helper functions with explicit milli/nanosecond resolution
authorPaolo Bonzini <pbonzini@redhat.com>
Fri, 11 Mar 2011 15:46:02 +0000 (16:46 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Mon, 21 Mar 2011 08:23:23 +0000 (09:23 +0100)
The code doesn't make much sense right now, but it will as
soon as timers will be able to scale their resolution arbitrarily.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
qemu-timer.h

index 8cd8f8368ad50c1802bf9b05a59f008370f54af3..345feeabc02c9b4805037bbfe7d5637b5870748b 100644 (file)
 
 /* timers */
 
+#define SCALE_MS 1000000
+#define SCALE_US 1000
+#define SCALE_NS 1
+
 typedef struct QEMUClock QEMUClock;
 typedef void QEMUTimerCB(void *opaque);
 
@@ -54,6 +58,25 @@ void init_clocks(void);
 int init_timer_alarm(void);
 void quit_timers(void);
 
+static inline QEMUTimer *qemu_new_timer_ns(QEMUClock *clock, QEMUTimerCB *cb,
+                                           void *opaque)
+{
+    assert(clock != rt_clock);
+    return qemu_new_timer(clock, cb, opaque);
+}
+
+static inline QEMUTimer *qemu_new_timer_ms(QEMUClock *clock, QEMUTimerCB *cb,
+                                           void *opaque)
+{
+    assert(clock == rt_clock);
+    return qemu_new_timer(clock, cb, opaque);
+}
+
+static inline int64_t qemu_get_clock_ms(QEMUClock *clock)
+{
+    return qemu_get_clock_ns(clock) / SCALE_MS;
+}
+
 static inline int64_t get_ticks_per_sec(void)
 {
     return 1000000000LL;