Merge remote-tracking branch 'remotes/xtensa/tags/20170124-xtensa' into staging
[qemu/ar7.git] / stubs / monitor.c
blob1d574b1c6fc58988853b2e896bbdd2cf780e01fd
1 #include "qemu/osdep.h"
2 #include "qapi/error.h"
3 #include "qemu-common.h"
4 #include "monitor/monitor.h"
6 Monitor *cur_mon = NULL;
8 int monitor_get_fd(Monitor *mon, const char *name, Error **errp)
10 error_setg(errp, "only QEMU supports file descriptor passing");
11 return -1;
14 void monitor_init(CharDriverState *chr, int flags)