]> git.proxmox.com Git - qemu.git/commit
qemu-tool: Stub out qemu-timer functions
authorStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Mon, 9 May 2011 15:45:39 +0000 (16:45 +0100)
committerKevin Wolf <kwolf@redhat.com>
Wed, 18 May 2011 12:38:46 +0000 (14:38 +0200)
commit5fc09ca5c315b87539db882fba175a7955783530
tree5502a6f762b436057342f590f9e91061e34ea7f0
parent4d29b50a41810684ad34e44352a630eb1dd94b58
qemu-tool: Stub out qemu-timer functions

Block drivers may use timers for flushing metadata to disk or
reconnecting to a network drive.  Stub out the following functions in
qemu-tool.c:

QEMUTimer *qemu_new_timer_ns(QEMUClock *clock, int scale,
                             QEMUTimerCB *cb, void *opaque)
void qemu_free_timer(QEMUTimer *ts)
void qemu_del_timer(QEMUTimer *ts)
void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time)
int64_t qemu_get_clock_ns(QEMUClock *clock)

They will result in timers never firing when linked against qemu-tool.o.

Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
qemu-tool.c