qed: Add support for zero clusters
[qemu.git] / qemu-tool.c
blobd45840de288e765f15dba4f37c272f990a3b661e
1 /*
2 * Compatibility for qemu-img/qemu-nbd
4 * Copyright IBM, Corp. 2008
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #include "qemu-common.h"
15 #include "monitor.h"
16 #include "qemu-timer.h"
17 #include "qemu-log.h"
18 #include "sysemu.h"
20 #include <sys/time.h>
22 QEMUClock *rt_clock;
24 FILE *logfile;
26 struct QEMUBH
28 QEMUBHFunc *cb;
29 void *opaque;
32 void qemu_service_io(void)
36 Monitor *cur_mon;
38 int monitor_cur_is_qmp(void)
40 return 0;
43 void monitor_set_error(Monitor *mon, QError *qerror)
47 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
51 void monitor_printf(Monitor *mon, const char *fmt, ...)
55 void monitor_print_filename(Monitor *mon, const char *filename)
59 void monitor_protocol_event(MonitorEvent event, QObject *data)
63 int qemu_set_fd_handler2(int fd,
64 IOCanReadHandler *fd_read_poll,
65 IOHandler *fd_read,
66 IOHandler *fd_write,
67 void *opaque)
69 return 0;
72 void qemu_notify_event(void)