ui: introduce enum to track VNC client framebuffer update request state
[qemu/ar7.git] / accel / stubs / hvf-stub.c
bloba79f9fc36fbf5d165d810c33ca6d6f672cbb595f
1 /*
2 * QEMU HVF support
4 * Copyright 2017 Red Hat, Inc.
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.
10 * See the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include "qemu-common.h"
16 #include "cpu.h"
17 #include "sysemu/hvf.h"
19 int hvf_init_vcpu(CPUState *cpu)
21 return -ENOSYS;
24 int hvf_vcpu_exec(CPUState *cpu)
26 return -ENOSYS;
29 void hvf_vcpu_destroy(CPUState *cpu)