summaryrefslogtreecommitdiff
path: root/accel/stubs/hvf-stub.c
blob: a79f9fc36fbf5d165d810c33ca6d6f672cbb595f (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
/*
 * QEMU HVF support
 *
 * Copyright 2017 Red Hat, Inc.
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2 or later, 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/hvf.h"

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

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

void hvf_vcpu_destroy(CPUState *cpu)
{
}