OSDN Git Service

Merge remote-tracking branch 'remotes/cminyard/tags/for-qemu-6.1-2' into staging
[qmiga/qemu.git] / stubs / monitor.c
1 #include "qemu/osdep.h"
2 #include "qapi/error.h"
3 #include "monitor/monitor.h"
4 #include "../monitor/monitor-internal.h"
5
6 int monitor_get_fd(Monitor *mon, const char *name, Error **errp)
7 {
8     error_setg(errp, "only QEMU supports file descriptor passing");
9     return -1;
10 }
11
12 void monitor_init_hmp(Chardev *chr, bool use_readline, Error **errp)
13 {
14 }
15
16 void monitor_fdsets_cleanup(void)
17 {
18 }