target/arm: Use _ra versions of cpu_stl_data() in v7M helpers
[qemu/ar7.git] / accel / stubs / whpx-stub.c
blob1efb89f25e0c7edd47a2ff11e676ef007cb2b862
1 /*
2 * QEMU Windows Hypervisor Platform accelerator (WHPX) stub
4 * Copyright Microsoft Corp. 2017
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.
9 */
11 #include "qemu/osdep.h"
12 #include "cpu.h"
13 #include "sysemu/whpx.h"
15 int whpx_init_vcpu(CPUState *cpu)
17 return -1;
20 int whpx_vcpu_exec(CPUState *cpu)
22 return -1;
25 void whpx_destroy_vcpu(CPUState *cpu)
29 void whpx_vcpu_kick(CPUState *cpu)
33 void whpx_cpu_synchronize_state(CPUState *cpu)
37 void whpx_cpu_synchronize_post_reset(CPUState *cpu)
41 void whpx_cpu_synchronize_post_init(CPUState *cpu)
45 void whpx_cpu_synchronize_pre_loadvm(CPUState *cpu)