2 * Accelerator CPUS Interface
4 * Copyright 2020 SUSE LLC
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
13 #include "sysemu/cpus.h"
15 extern const CpusAccel kvm_cpus
;
17 int kvm_init_vcpu(CPUState
*cpu
, Error
**errp
);
18 int kvm_cpu_exec(CPUState
*cpu
);
19 void kvm_destroy_vcpu(CPUState
*cpu
);
20 void kvm_cpu_synchronize_post_reset(CPUState
*cpu
);
21 void kvm_cpu_synchronize_post_init(CPUState
*cpu
);
22 void kvm_cpu_synchronize_pre_loadvm(CPUState
*cpu
);
24 #endif /* KVM_CPUS_H */