]> git.proxmox.com Git - mirror_qemu.git/blame - hax-stub.c
qga: Make qemu-ga compile statically for Windows
[mirror_qemu.git] / hax-stub.c
CommitLineData
47c1c8c1
VP
1/*
2 * QEMU HAXM support
3 *
4 * Copyright (c) 2015, Intel Corporation
5 *
6 * Copyright 2016 Google, Inc.
7 *
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.
11 *
12 * See the COPYING file in the top-level directory.
13 *
14 */
15
16#include "qemu/osdep.h"
17#include "qemu-common.h"
18#include "cpu.h"
19#include "sysemu/hax.h"
20
21int hax_sync_vcpus(void)
22{
23 return 0;
24}
25
47c1c8c1
VP
26int hax_init_vcpu(CPUState *cpu)
27{
28 return -ENOSYS;
29}
30
31int hax_smp_cpu_exec(CPUState *cpu)
32{
33 return -ENOSYS;
34}