hw/9pfs: Use the correct signed type for different variables
[qemu.git] / qemu-tool.c
blob5df72797452e81b2e4e7283f3032ac57b98d40da
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 "migration.h"
20 #include <sys/time.h>
22 QEMUClock *rt_clock;
23 QEMUClock *vm_clock;
25 FILE *logfile;
27 struct QEMUBH
29 QEMUBHFunc *cb;
30 void *opaque;
33 Monitor *cur_mon;
35 int monitor_cur_is_qmp(void)
37 return 0;
40 void monitor_set_error(Monitor *mon, QError *qerror)
44 void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
48 void monitor_printf(Monitor *mon, const char *fmt, ...)
52 void monitor_print_filename(Monitor *mon, const char *filename)
56 void monitor_protocol_event(MonitorEvent event, QObject *data)
60 int qemu_set_fd_handler2(int fd,
61 IOCanReadHandler *fd_read_poll,
62 IOHandler *fd_read,
63 IOHandler *fd_write,
64 void *opaque)
66 return 0;
69 void qemu_notify_event(void)
73 QEMUTimer *qemu_new_timer(QEMUClock *clock, int scale,
74 QEMUTimerCB *cb, void *opaque)
76 return g_malloc(1);
79 void qemu_free_timer(QEMUTimer *ts)
81 g_free(ts);
84 void qemu_del_timer(QEMUTimer *ts)
88 void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time)
92 int64_t qemu_get_clock_ns(QEMUClock *clock)
94 return 0;
97 void migrate_add_blocker(Error *reason)
101 void migrate_del_blocker(Error *reason)