https://github.com/qemu/qemu
Raw File
Tip revision: 075fd020afe3150a0e6c4b049705b358b597b65a authored by Richard Henderson on 20 August 2024, 06:51:15 UTC
Merge tag 'nvme-next-pull-request' of https://gitlab.com/birkelund/qemu into staging
Tip revision: 075fd02
xen-stub.c
/*
 * Copyright (C) 2014       Citrix Systems UK Ltd.
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 */

#include "qemu/osdep.h"
#include "sysemu/xen.h"
#include "qapi/qapi-commands-migration.h"

bool xen_allowed;

void qmp_xen_set_global_dirty_log(bool enable, Error **errp)
{
}
back to top