diff options
| author | Alex Bligh <alex@alex.org.uk> | 2013-08-21 16:02:47 +0100 |
|---|---|---|
| committer | Stefan Hajnoczi <stefanha@redhat.com> | 2013-08-22 19:10:27 +0200 |
| commit | 6a1751b7aad6e38e9d1ae6bcea72fa28bf6cc5fb (patch) | |
| tree | e9323ec0742f142f26fcc79eecb76fdcc97ccd9d /migration-fd.c | |
| parent | ff83c66eccf5b5f6b6530d504e3be41559250dcb (diff) | |
| download | focaccia-qemu-6a1751b7aad6e38e9d1ae6bcea72fa28bf6cc5fb.tar.gz focaccia-qemu-6a1751b7aad6e38e9d1ae6bcea72fa28bf6cc5fb.zip | |
aio / timers: Untangle include files
include/qemu/timer.h has no need to include main-loop.h and doing so causes an issue for the next patch. Unfortunately various files assume including timers.h will pull in main-loop.h. Untangle this mess. Signed-off-by: Alex Bligh <alex@alex.org.uk> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'migration-fd.c')
| -rw-r--r-- | migration-fd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/migration-fd.c b/migration-fd.c index 3d4613cbaf..d2e523af74 100644 --- a/migration-fd.c +++ b/migration-fd.c @@ -14,6 +14,7 @@ */ #include "qemu-common.h" +#include "qemu/main-loop.h" #include "qemu/sockets.h" #include "migration/migration.h" #include "monitor/monitor.h" |