diff options
Diffstat (limited to 'accel/stubs/hax-stub.c')
-rw-r--r-- | accel/stubs/hax-stub.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/accel/stubs/hax-stub.c b/accel/stubs/hax-stub.c new file mode 100644 index 000000000..49077f88e --- /dev/null +++ b/accel/stubs/hax-stub.c @@ -0,0 +1,22 @@ +/* + * 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 "sysemu/hax.h" + +int hax_sync_vcpus(void) +{ + return 0; +} |