diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2010-03-29 19:23:47 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-03-29 19:23:47 +0000 |
commit | 1c14f162dd92c0448948791531dc82ac277330ae (patch) | |
tree | 6d3acf8ca007935e6289ad82b744f97af1f4dafe /kvm.h | |
parent | 54fc6ea92bdd698498706d3cd8e10afd78680bed (diff) |
Allow various header files to be included from non-CPU code
Allow balloon.h, gdbstub.h and kvm.h to be included from
non-CPU code.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'kvm.h')
-rw-r--r-- | kvm.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -14,12 +14,12 @@ #ifndef QEMU_KVM_H #define QEMU_KVM_H -#include "config.h" +#include "config-host.h" #include "qemu-queue.h" -#ifdef CONFIG_KVM extern int kvm_allowed; +#ifdef CONFIG_KVM #define kvm_enabled() (kvm_allowed) #else #define kvm_enabled() (0) @@ -31,6 +31,7 @@ struct kvm_run; int kvm_init(int smp_cpus); +#ifdef NEED_CPU_H int kvm_init_vcpu(CPUState *env); int kvm_cpu_exec(CPUState *env); @@ -160,5 +161,5 @@ static inline void cpu_synchronize_post_init(CPUState *env) kvm_cpu_synchronize_post_init(env); } } - +#endif #endif |