summaryrefslogtreecommitdiff
path: root/hax-stub.c
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2017-09-13 19:11:49 -0300
committerPaolo Bonzini <pbonzini@redhat.com>2017-09-19 16:20:49 +0200
commit4c44a007b58a88641d6f831ec3542060d6d8c122 (patch)
tree9b7cff92bd5a58b3944a54c8d6e1fb66cdbee8e7 /hax-stub.c
parent128b52e8d15f98c6a0734208d85f83e78a7ac652 (diff)
downloadqemu-4c44a007b58a88641d6f831ec3542060d6d8c122.zip
accel/hax: move hax-stub.c to accel/stubs/
Suggested-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20170913221149.30382-1-f4bug@amsat.org> Reviewed-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'hax-stub.c')
-rw-r--r--hax-stub.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/hax-stub.c b/hax-stub.c
deleted file mode 100644
index c0e6f892e5..0000000000
--- a/hax-stub.c
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * 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_init_vcpu(CPUState *cpu)
-{
- return -ENOSYS;
-}
-
-int hax_smp_cpu_exec(CPUState *cpu)
-{
- return -ENOSYS;
-}