]>
Commit | Line | Data |
---|---|---|
87c9b5e0 | 1 | #include "qemu/osdep.h" |
da34e65c | 2 | #include "qapi/error.h" |
3bc2f570 | 3 | #include "qemu-common.h" |
83c9089e | 4 | #include "monitor/monitor.h" |
3bc2f570 | 5 | |
62aa1d88 | 6 | __thread Monitor *cur_mon; |
869e9aec | 7 | |
3bc2f570 PB |
8 | int monitor_get_fd(Monitor *mon, const char *name, Error **errp) |
9 | { | |
10 | error_setg(errp, "only QEMU supports file descriptor passing"); | |
11 | return -1; | |
12 | } | |
869e9aec | 13 | |
0ec7b3e7 | 14 | void monitor_init(Chardev *chr, int flags) |
869e9aec PB |
15 | { |
16 | } |