diff options
author | Jan Kiszka | 2009-09-15 13:36:04 +0200 |
---|---|---|
committer | Anthony Liguori | 2009-10-05 16:32:45 +0200 |
commit | f64382bad849a16208d30988ef28d5e7375099da (patch) | |
tree | 9a0e4712b7db3d626e437af8e3535ee3ca3909fc | |
parent | Rename QEMU_TIMER_* to QEMU_CLOCK_* (diff) | |
download | qemu-f64382bad849a16208d30988ef28d5e7375099da.tar.gz qemu-f64382bad849a16208d30988ef28d5e7375099da.tar.xz qemu-f64382bad849a16208d30988ef28d5e7375099da.zip |
win32: Drop dead dyntick timer code
nearest_delta_us is calculated but not used. Drop it.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r-- | vl.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1159,7 +1159,7 @@ static int64_t qemu_next_deadline(void) return delta; } -#if defined(__linux__) || defined(_WIN32) +#if defined(__linux__) static uint64_t qemu_next_deadline_dyntick(void) { int64_t delta; @@ -1468,15 +1468,11 @@ static void win32_stop_timer(struct qemu_alarm_timer *t) static void win32_rearm_timer(struct qemu_alarm_timer *t) { struct qemu_alarm_win32 *data = t->priv; - uint64_t nearest_delta_us; if (!active_timers[QEMU_CLOCK_REALTIME] && !active_timers[QEMU_CLOCK_VIRTUAL]) return; - nearest_delta_us = qemu_next_deadline_dyntick(); - nearest_delta_us /= 1000; - timeKillEvent(data->timerId); data->timerId = timeSetEvent(1, |