mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00

Specifically add listing, injection of event channels. Signed-off-by: Joao Martins <joao.m.martins@oracle.com> Signed-off-by: David Woodhouse <dwmw@amazon.co.uk> Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Paul Durrant <paul@xen.org>
28 lines
687 B
C
28 lines
687 B
C
/*
|
|
* QEMU Xen emulation: QMP stubs
|
|
*
|
|
* Copyright © 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
*
|
|
* Authors: David Woodhouse <dwmw2@infradead.org>
|
|
*
|
|
* 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 "qapi/error.h"
|
|
#include "qapi/qapi-commands-misc-target.h"
|
|
|
|
#ifdef TARGET_I386
|
|
EvtchnInfoList *qmp_xen_event_list(Error **errp)
|
|
{
|
|
error_setg(errp, "Xen event channel emulation not enabled");
|
|
return NULL;
|
|
}
|
|
|
|
void qmp_xen_event_inject(uint32_t port, Error **errp)
|
|
{
|
|
error_setg(errp, "Xen event channel emulation not enabled");
|
|
}
|
|
#endif
|