https://github.com/qemu/qemu
Raw File
Tip revision: 9e2e9fe3df9f539f8b6941ceb96d25355fdae47e authored by Peter Maydell on 24 March 2021, 19:50:49 UTC
Update version for v6.0.0-rc0 release
Tip revision: 9e2e9fe
hax-stub.c
/*
 * 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;
}
back to top