]> Git Repo - qemu.git/blob - stubs/monitor.c
Makefile: install the edk2 firmware images and their descriptors
[qemu.git] / stubs / monitor.c
1 #include "qemu/osdep.h"
2 #include "qapi/error.h"
3 #include "qapi/qapi-emit-events.h"
4 #include "qemu-common.h"
5 #include "monitor/monitor.h"
6
7 __thread Monitor *cur_mon;
8
9 int monitor_get_fd(Monitor *mon, const char *name, Error **errp)
10 {
11     error_setg(errp, "only QEMU supports file descriptor passing");
12     return -1;
13 }
14
15 void monitor_init(Chardev *chr, int flags)
16 {
17 }
18
19 void qapi_event_emit(QAPIEvent event, QDict *qdict)
20 {
21 }
This page took 0.024936 seconds and 4 git commands to generate.