xref: /qemu/stubs/monitor-internal.c (revision a8d2532645cf5ce4f75981f81dfe363efc35d05c)
1 #include "qemu/osdep.h"
2 #include "qapi/error.h"
3 #include "qapi/qapi-emit-events.h"
4 #include "monitor/monitor.h"
5 
6 __thread Monitor *cur_mon;
7 
8 int monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
9 {
10     abort();
11 }
12 
13 int monitor_get_fd(Monitor *mon, const char *name, Error **errp)
14 {
15     error_setg(errp, "only QEMU supports file descriptor passing");
16     return -1;
17 }
18 
19 void monitor_init(Chardev *chr, int flags)
20 {
21 }
22 
23 void qapi_event_emit(QAPIEvent event, QDict *qdict)
24 {
25 }
26