diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/cpu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/qemu/cpu.h b/include/qemu/cpu.h index b8f8dd1d13..03962eff69 100644 --- a/include/qemu/cpu.h +++ b/include/qemu/cpu.h @@ -52,6 +52,8 @@ typedef struct CPUClass { void (*reset)(CPUState *cpu); } CPUClass; +struct KVMState; + /** * CPUState: * @created: Indicates whether the CPU thread has been successfully created. @@ -82,6 +84,7 @@ struct CPUState { int kvm_fd; bool kvm_vcpu_dirty; #endif + struct KVMState *kvm_state; /* TODO Move common fields from CPUArchState here. */ }; |