]> git.ipfire.org Git - thirdparty/qemu.git/blame - stubs/monitor.c
hw/display/ramfb: initialize fw-config space with xres/ yres
[thirdparty/qemu.git] / stubs / monitor.c
CommitLineData
87c9b5e0 1#include "qemu/osdep.h"
da34e65c 2#include "qapi/error.h"
5d75648b 3#include "qapi/qapi-emit-events.h"
3bc2f570 4#include "qemu-common.h"
83c9089e 5#include "monitor/monitor.h"
3bc2f570 6
62aa1d88 7__thread Monitor *cur_mon;
869e9aec 8
637de4db
MA
9int monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
10{
11 abort();
12}
13
3bc2f570
PB
14int monitor_get_fd(Monitor *mon, const char *name, Error **errp)
15{
16 error_setg(errp, "only QEMU supports file descriptor passing");
17 return -1;
18}
869e9aec 19
0ec7b3e7 20void monitor_init(Chardev *chr, int flags)
869e9aec
PB
21{
22}
a9529100
MA
23
24void qapi_event_emit(QAPIEvent event, QDict *qdict)
25{
26}