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"
29 void term_printf(const char *fmt
, ...)
33 void term_print_filename(const char *filename
)
37 QEMUBH
*qemu_bh_new(QEMUBHFunc
*cb
, void *opaque
)
41 bh
= qemu_malloc(sizeof(*bh
));
50 int qemu_bh_poll(void)
55 void qemu_bh_schedule(QEMUBH
*bh
)
60 void qemu_bh_cancel(QEMUBH
*bh
)
64 void qemu_bh_delete(QEMUBH
*bh
)
69 int qemu_set_fd_handler2(int fd
,
70 IOCanRWHandler
*fd_read_poll
,
78 int64_t qemu_get_clock(QEMUClock
*clock
)
81 gettimeofday(&tv
, NULL
);
82 return (tv
.tv_sec
* 1000000000LL + (tv
.tv_usec
* 1000)) / 1000000;