aboutsummaryrefslogtreecommitdiff
path: root/hax-stub.c
blob: a532dbae81eaffd22166c09c7cdf9e3d65f84d53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * QEMU HAXM support
 *
 * Copyright (c) 2015, Intel Corporation
 *
 * Copyright 2016 Google, Inc.
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * See the COPYING file in the top-level directory.
 *
 */

#include "qemu/osdep.h"
#include "qemu-common.h"
#include "cpu.h"
#include "sysemu/hax.h"

int hax_sync_vcpus(void)
{
    return 0;
}

int hax_populate_ram(uint64_t va, uint32_t size)
{
    return -ENOSYS;
}

int hax_init_vcpu(CPUState *cpu)
{
    return -ENOSYS;
}

int hax_smp_cpu_exec(CPUState *cpu)
{
    return -ENOSYS;
}