xref: /qemu/stubs/monitor-internal.c (revision 02326733)
1 #include "qemu/osdep.h"
2 #include "qapi/error.h"
3 #include "monitor/monitor.h"
4 
5 int monitor_get_fd(Monitor *mon, const char *name, Error **errp)
6 {
7     error_setg(errp, "only QEMU supports file descriptor passing");
8     return -1;
9 }
10 
11 void monitor_init_hmp(Chardev *chr, bool use_readline, Error **errp)
12 {
13 }
14