2 * Compatibility for qemu-img/qemu-nbd
4 * Copyright IBM, Corp. 2008
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"
16 #include "qemu-timer.h"
18 #include "migration.h"
35 int monitor_cur_is_qmp(void)
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
,
69 void qemu_notify_event(void)
73 QEMUTimer
*qemu_new_timer(QEMUClock
*clock
, int scale
,
74 QEMUTimerCB
*cb
, void *opaque
)
79 void qemu_free_timer(QEMUTimer
*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
)
97 void migrate_add_blocker(Error
*reason
)
101 void migrate_del_blocker(Error
*reason
)