qcow2: try load bitmaps only once
[qemu/kevin.git] / stubs / monitor.c
blobe018c8f5947900fe85f311bce3a02047dea93c01
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(Chardev *chr, int flags)