]>
Commit | Line | Data |
---|---|---|
87c9b5e0 | 1 | #include "qemu/osdep.h" |
da34e65c | 2 | #include "qapi/error.h" |
5d75648b | 3 | #include "qapi/qapi-emit-events.h" |
83c9089e | 4 | #include "monitor/monitor.h" |
3bc2f570 | 5 | |
62aa1d88 | 6 | __thread Monitor *cur_mon; |
869e9aec | 7 | |
637de4db MA |
8 | int monitor_vprintf(Monitor *mon, const char *fmt, va_list ap) |
9 | { | |
10 | abort(); | |
11 | } | |
12 | ||
3bc2f570 PB |
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 | } | |
869e9aec | 18 | |
fbfc29e3 KW |
19 | void monitor_init_qmp(Chardev *chr, bool pretty) |
20 | { | |
21 | } | |
22 | ||
23 | void monitor_init_hmp(Chardev *chr, bool use_readline) | |
869e9aec PB |
24 | { |
25 | } | |
a9529100 MA |
26 | |
27 | void qapi_event_emit(QAPIEvent event, QDict *qdict) | |
28 | { | |
29 | } |