migration: move some declarations to migration.h
[qemu/lumag.git] / qemu-tool.c
blobf4a6ad081c5e5d0cfc9aa90fa93f04c9a3846448
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"
19 #include <sys/time.h>
21 QEMUClock *rt_clock;
23 FILE *logfile;
25 struct QEMUBH
27 QEMUBHFunc *cb;
28 void *opaque;
31 void qemu_service_io(void)
35 Monitor *cur_mon;
37 int monitor_cur_is_qmp(void)
39 return 0;
42 void monitor_set_error(Monitor *mon, QError *qerror)
46 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
50 void monitor_printf(Monitor *mon, const char *fmt, ...)
54 void monitor_print_filename(Monitor *mon, const char *filename)
58 void monitor_protocol_event(MonitorEvent event, QObject *data)
62 int qemu_set_fd_handler2(int fd,
63 IOCanReadHandler *fd_read_poll,
64 IOHandler *fd_read,
65 IOHandler *fd_write,
66 void *opaque)
68 return 0;
71 void qemu_notify_event(void)