summaryrefslogtreecommitdiff
path: root/qemu-common.h
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2009-10-22 17:54:37 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-10-27 12:28:59 -0500
commit78803f4b68f9d5f77149c7c9512930998de47bb4 (patch)
tree32e3028b10be26d3a354a32f2d8586bf37ce0907 /qemu-common.h
parent1f76aceebf3a8ed9d4d54df443c09c578562752e (diff)
downloadqemu-78803f4b68f9d5f77149c7c9512930998de47bb4.tar.gz
qemu-78803f4b68f9d5f77149c7c9512930998de47bb4.tar.bz2
qemu-78803f4b68f9d5f77149c7c9512930998de47bb4.zip
Split out bottom halves
Instead of putting more and more stuff into vl.c, let's have the generic functions that deal with asynchronous callbacks in their own file. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-common.h')
-rw-r--r--qemu-common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/qemu-common.h b/qemu-common.h
index 768e749feb..3e73bf9523 100644
--- a/qemu-common.h
+++ b/qemu-common.h
@@ -105,6 +105,7 @@ void qemu_bh_schedule_idle(QEMUBH *bh);
void qemu_bh_cancel(QEMUBH *bh);
void qemu_bh_delete(QEMUBH *bh);
int qemu_bh_poll(void);
+void qemu_bh_update_timeout(int *timeout);
uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c);