From e02cda008591317b1625707ff8e115a4841aa889 Mon Sep 17 00:00:00 2001 From: Timos Ampelikiotis Date: Tue, 10 Oct 2023 11:40:56 +0000 Subject: Introduce Virtio-loopback epsilon release: Epsilon release introduces a new compatibility layer which make virtio-loopback design to work with QEMU and rust-vmm vhost-user backend without require any changes. Signed-off-by: Timos Ampelikiotis Change-Id: I52e57563e08a7d0bdc002f8e928ee61ba0c53dd9 --- stubs/monitor.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 stubs/monitor.c (limited to 'stubs/monitor.c') diff --git a/stubs/monitor.c b/stubs/monitor.c new file mode 100644 index 000000000..20786ac4f --- /dev/null +++ b/stubs/monitor.c @@ -0,0 +1,18 @@ +#include "qemu/osdep.h" +#include "qapi/error.h" +#include "monitor/monitor.h" +#include "../monitor/monitor-internal.h" + +int monitor_get_fd(Monitor *mon, const char *name, Error **errp) +{ + error_setg(errp, "only QEMU supports file descriptor passing"); + return -1; +} + +void monitor_init_hmp(Chardev *chr, bool use_readline, Error **errp) +{ +} + +void monitor_fdsets_cleanup(void) +{ +} -- cgit