]> Git Repo - qemu.git/blame - accel/stubs/hvf-stub.c
Merge remote-tracking branch 'remotes/kraxel/tags/vga-20180703-pull-request' into...
[qemu.git] / accel / stubs / hvf-stub.c
CommitLineData
c97d6d2c
SAGDR
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 "qemu-common.h"
16#include "cpu.h"
17#include "sysemu/hvf.h"
18
19int hvf_init_vcpu(CPUState *cpu)
20{
21 return -ENOSYS;
22}
23
24int hvf_vcpu_exec(CPUState *cpu)
25{
26 return -ENOSYS;
27}
28
29void hvf_vcpu_destroy(CPUState *cpu)
30{
31}
This page took 0.056664 seconds and 4 git commands to generate.