diff options
| author | Alex Bligh | 2013-08-21 17:03:02 +0200 |
|---|---|---|
| committer | Stefan Hajnoczi | 2013-08-22 19:14:24 +0200 |
| commit | 40daca54cd94678273c81dca8c0adefa297da5ea (patch) | |
| tree | 34520ab76d7cb9953d8c2bcfd5674769079f322a /qtest.c | |
| parent | aio / timers: Add qemu_clock_get_ms and qemu_clock_get_ms (diff) | |
| download | qemu-40daca54cd94678273c81dca8c0adefa297da5ea.tar.gz qemu-40daca54cd94678273c81dca8c0adefa297da5ea.tar.xz qemu-40daca54cd94678273c81dca8c0adefa297da5ea.zip | |
aio / timers: Rearrange timer.h & make legacy functions call non-legacy
Rearrange timer.h so it is in order by function type.
Make legacy functions call non-legacy functions rather than vice-versa.
Convert cpus.c to use new API.
Signed-off-by: Alex Bligh <alex@alex.org.uk>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'qtest.c')
| -rw-r--r-- | qtest.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -412,7 +412,7 @@ static void qtest_process_command(CharDriverState *chr, gchar **words) if (words[1]) { ns = strtoll(words[1], NULL, 0); } else { - ns = qemu_clock_deadline_ns_all(vm_clock); + ns = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL); } qtest_clock_warp(qemu_get_clock_ns(vm_clock) + ns); qtest_send_prefix(chr); |
