提交 d2528bdc 编写于 作者: P Paolo Bonzini

qemu-timer: do not include sysemu/cpus.h from util/qemu-timer.h

This dependency is the wrong way, and we will need util/qemu-timer.h from
sysemu/cpus.h in the next patch.
Reviewed-by: NAlex Bennée <alex.bennee@linaro.org>
Reviewed-by: NEdgar E. Iglesias <edgar.iglesias@xilinx.com>
Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
上级 33bef0b9
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#if defined(TARGET_I386) && !defined(CONFIG_USER_ONLY) #if defined(TARGET_I386) && !defined(CONFIG_USER_ONLY)
#include "hw/i386/apic.h" #include "hw/i386/apic.h"
#endif #endif
#include "sysemu/cpus.h"
#include "sysemu/replay.h" #include "sysemu/replay.h"
/* -icount align implementation. */ /* -icount align implementation. */
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
#include "sysemu/replay.h" #include "sysemu/replay.h"
#include "sysemu/qtest.h" #include "sysemu/qtest.h"
#include "block/aio.h" #include "block/aio.h"
#include "sysemu/cpus.h"
#define DELTA_ADJUST 1 #define DELTA_ADJUST 1
#define DELTA_NO_ADJUST -1 #define DELTA_NO_ADJUST -1
......
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
#include "qapi/error.h" #include "qapi/error.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "sysemu/numa.h" #include "sysemu/numa.h"
#include "sysemu/cpus.h"
#include "hw/hw.h" #include "hw/hw.h"
#include "target/ppc/cpu.h" #include "target/ppc/cpu.h"
#include "qemu/log.h" #include "qemu/log.h"
......
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu/notify.h" #include "qemu/notify.h"
#include "qemu/host-utils.h" #include "qemu/host-utils.h"
#include "sysemu/cpus.h"
#define NANOSECONDS_PER_SECOND 1000000000LL #define NANOSECONDS_PER_SECOND 1000000000LL
......
#ifndef QEMU_CPUS_H #ifndef QEMU_CPUS_H
#define QEMU_CPUS_H #define QEMU_CPUS_H
#include "qemu/timer.h"
/* cpus.c */ /* cpus.c */
bool qemu_in_vcpu_thread(void); bool qemu_in_vcpu_thread(void);
void qemu_init_cpu_loop(void); void qemu_init_cpu_loop(void);
......
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
#include "hw/s390x/adapter.h" #include "hw/s390x/adapter.h"
#include "exec/gdbstub.h" #include "exec/gdbstub.h"
#include "sysemu/kvm_int.h" #include "sysemu/kvm_int.h"
#include "sysemu/cpus.h"
#include "qemu/bswap.h" #include "qemu/bswap.h"
#include "exec/memory.h" #include "exec/memory.h"
#include "exec/ram_addr.h" #include "exec/ram_addr.h"
......
...@@ -77,6 +77,7 @@ ...@@ -77,6 +77,7 @@
#include "qapi-event.h" #include "qapi-event.h"
#include "qmp-introspect.h" #include "qmp-introspect.h"
#include "sysemu/qtest.h" #include "sysemu/qtest.h"
#include "sysemu/cpus.h"
#include "qemu/cutils.h" #include "qemu/cutils.h"
#include "qapi/qmp/dispatch.h" #include "qapi/qmp/dispatch.h"
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#include "replay-internal.h" #include "replay-internal.h"
#include "qemu/timer.h" #include "qemu/timer.h"
#include "qemu/main-loop.h" #include "qemu/main-loop.h"
#include "sysemu/cpus.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "qemu/error-report.h" #include "qemu/error-report.h"
......
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "cpu.h" #include "cpu.h"
#include "sysemu/cpus.h"
#include "disas/disas.h" #include "disas/disas.h"
#include "qemu/host-utils.h" #include "qemu/host-utils.h"
#include "exec/exec-all.h" #include "exec/exec-all.h"
......
...@@ -57,6 +57,7 @@ ...@@ -57,6 +57,7 @@
#include "qemu/timer.h" #include "qemu/timer.h"
#include "qemu/main-loop.h" #include "qemu/main-loop.h"
#include "exec/log.h" #include "exec/log.h"
#include "sysemu/cpus.h"
/* #define DEBUG_TB_INVALIDATE */ /* #define DEBUG_TB_INVALIDATE */
/* #define DEBUG_TB_FLUSH */ /* #define DEBUG_TB_FLUSH */
......
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
#include "qemu/timer.h" #include "qemu/timer.h"
#include "qemu/sockets.h" // struct in_addr needed for libslirp.h #include "qemu/sockets.h" // struct in_addr needed for libslirp.h
#include "sysemu/qtest.h" #include "sysemu/qtest.h"
#include "sysemu/cpus.h"
#include "slirp/libslirp.h" #include "slirp/libslirp.h"
#include "qemu/main-loop.h" #include "qemu/main-loop.h"
#include "block/aio.h" #include "block/aio.h"
......
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#include "qemu/timer.h" #include "qemu/timer.h"
#include "sysemu/replay.h" #include "sysemu/replay.h"
#include "sysemu/sysemu.h" #include "sysemu/sysemu.h"
#include "sysemu/cpus.h"
#ifdef CONFIG_POSIX #ifdef CONFIG_POSIX
#include <pthread.h> #include <pthread.h>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册