xref: /qemu/stubs/monitor-core.c (revision 6ede81d5)
1*6ede81d5SKevin Wolf #include "qemu/osdep.h"
2*6ede81d5SKevin Wolf #include "monitor/monitor.h"
3*6ede81d5SKevin Wolf #include "qemu-common.h"
4*6ede81d5SKevin Wolf #include "qapi/qapi-emit-events.h"
5*6ede81d5SKevin Wolf 
6*6ede81d5SKevin Wolf __thread Monitor *cur_mon;
7*6ede81d5SKevin Wolf 
8*6ede81d5SKevin Wolf void monitor_init_qmp(Chardev *chr, bool pretty)
9*6ede81d5SKevin Wolf {
10*6ede81d5SKevin Wolf }
11*6ede81d5SKevin Wolf 
12*6ede81d5SKevin Wolf void qapi_event_emit(QAPIEvent event, QDict *qdict)
13*6ede81d5SKevin Wolf {
14*6ede81d5SKevin Wolf }
15*6ede81d5SKevin Wolf 
16*6ede81d5SKevin Wolf int monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
17*6ede81d5SKevin Wolf {
18*6ede81d5SKevin Wolf     abort();
19*6ede81d5SKevin Wolf }
20*6ede81d5SKevin Wolf 
21*6ede81d5SKevin Wolf 
22