Merge remote-tracking branch 'qemu/master'
[qemu/ar7.git] / hax-stub.c
bloba532dbae81eaffd22166c09c7cdf9e3d65f84d53
1 /*
2 * QEMU HAXM support
4 * Copyright (c) 2015, Intel Corporation
6 * Copyright 2016 Google, Inc.
8 * This software is licensed under the terms of the GNU General Public
9 * License version 2, as published by the Free Software Foundation, and
10 * may be copied, distributed, and modified under those terms.
12 * See the COPYING file in the top-level directory.
16 #include "qemu/osdep.h"
17 #include "qemu-common.h"
18 #include "cpu.h"
19 #include "sysemu/hax.h"
21 int hax_sync_vcpus(void)
23 return 0;
26 int hax_populate_ram(uint64_t va, uint32_t size)
28 return -ENOSYS;
31 int hax_init_vcpu(CPUState *cpu)
33 return -ENOSYS;
36 int hax_smp_cpu_exec(CPUState *cpu)
38 return -ENOSYS;