Make binary stripping conditional (Riku Voipio)
[qemu-kvm/fedora.git] / qemu-tool.c
blobb358c9b0b06d21d4c49fded35f891bb2aa2072d7
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 "console.h"
16 #include "sysemu.h"
17 #include "qemu-timer.h"
19 #include <sys/time.h>
21 QEMUClock *rt_clock;
23 struct QEMUBH
25 QEMUBHFunc *cb;
26 void *opaque;
29 void term_printf(const char *fmt, ...)
33 void term_print_filename(const char *filename)
37 QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque)
39 QEMUBH *bh;
41 bh = qemu_malloc(sizeof(*bh));
42 bh->cb = cb;
43 bh->opaque = opaque;
45 return bh;
48 int qemu_bh_poll(void)
50 return 0;
53 void qemu_bh_schedule(QEMUBH *bh)
55 bh->cb(bh->opaque);
58 void qemu_bh_cancel(QEMUBH *bh)
62 void qemu_bh_delete(QEMUBH *bh)
64 qemu_free(bh);
67 int qemu_set_fd_handler2(int fd,
68 IOCanRWHandler *fd_read_poll,
69 IOHandler *fd_read,
70 IOHandler *fd_write,
71 void *opaque)
73 return 0;
76 int64_t qemu_get_clock(QEMUClock *clock)
78 qemu_timeval tv;
79 qemu_gettimeofday(&tv);
80 return (tv.tv_sec * 1000000000LL + (tv.tv_usec * 1000)) / 1000000;