1/*
2 * QEMU HVF support
3 *
4 * Copyright 2017 Red Hat, Inc.
5 *
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2 or later, as published by the Free Software Foundation,
8 * and may be copied, distributed, and modified under those terms.
9 *
10 * See the COPYING file in the top-level directory.
11 *
12 */
13
14#include "qemu/osdep.h"
15#include "cpu.h"
16#include "sysemu/hvf.h"
17
18int hvf_init_vcpu(CPUState *cpu)
19{
20 return -ENOSYS;
21}
22
23int hvf_vcpu_exec(CPUState *cpu)
24{
25 return -ENOSYS;
26}
27
28void hvf_vcpu_destroy(CPUState *cpu)
29{
30}
31