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"
17 #include "qemu-timer.h"
32 void qemu_service_io(void)
38 void monitor_printf(Monitor
*mon
, const char *fmt
, ...)
42 void monitor_print_filename(Monitor
*mon
, const char *filename
)
46 void async_context_push(void)
50 void async_context_pop(void)
54 int get_async_context_id(void)
59 void monitor_protocol_event(MonitorEvent event
, QObject
*data
)
63 QEMUBH
*qemu_bh_new(QEMUBHFunc
*cb
, void *opaque
)
67 bh
= qemu_malloc(sizeof(*bh
));
74 int qemu_bh_poll(void)
79 void qemu_bh_schedule(QEMUBH
*bh
)
84 void qemu_bh_cancel(QEMUBH
*bh
)
88 void qemu_bh_delete(QEMUBH
*bh
)
93 int qemu_set_fd_handler2(int fd
,
94 IOCanRWHandler
*fd_read_poll
,
102 int64_t qemu_get_clock(QEMUClock
*clock
)
105 qemu_gettimeofday(&tv
);
106 return (tv
.tv_sec
* 1000000000LL + (tv
.tv_usec
* 1000)) / 1000000;
109 void qemu_error(const char *fmt
, ...)
114 vfprintf(stderr
, fmt
, args
);