Convert atexit users to exit_notifier
[qemu/aliguori-queue.git] / qemu-tool.c
blobdda752b7d26f1ab096fe4631a6ae1758a911be45
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 "qemu-error.h"
20 #include <sys/time.h>
22 QEMUClock *rt_clock;
24 FILE *logfile;
26 struct QEMUBH
28 QEMUBHFunc *cb;
29 void *opaque;
32 void qemu_service_io(void)
36 void monitor_printf(Monitor *mon, const char *fmt, ...)
40 void monitor_print_filename(Monitor *mon, const char *filename)
44 void async_context_push(void)
48 void async_context_pop(void)
52 int get_async_context_id(void)
54 return 0;
57 void monitor_protocol_event(MonitorEvent event, QObject *data)
61 QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque)
63 QEMUBH *bh;
65 bh = qemu_malloc(sizeof(*bh));
66 bh->cb = cb;
67 bh->opaque = opaque;
69 return bh;
72 int qemu_bh_poll(void)
74 return 0;
77 void qemu_bh_schedule(QEMUBH *bh)
79 bh->cb(bh->opaque);
82 void qemu_bh_cancel(QEMUBH *bh)
86 void qemu_bh_delete(QEMUBH *bh)
88 qemu_free(bh);
91 int qemu_set_fd_handler2(int fd,
92 IOCanReadHandler *fd_read_poll,
93 IOHandler *fd_read,
94 IOHandler *fd_write,
95 void *opaque)
97 return 0;
100 int64_t qemu_get_clock(QEMUClock *clock)
102 qemu_timeval tv;
103 qemu_gettimeofday(&tv);
104 return (tv.tv_sec * 1000000000LL + (tv.tv_usec * 1000)) / 1000000;
107 Location *loc_push_restore(Location *loc)
109 return loc;
112 Location *loc_push_none(Location *loc)
114 return loc;
117 Location *loc_pop(Location *loc)
119 return loc;
122 Location *loc_save(Location *loc)
124 return loc;
127 void loc_restore(Location *loc)
131 void error_report(const char *fmt, ...)
133 va_list args;
135 va_start(args, fmt);
136 vfprintf(stderr, fmt, args);
137 va_end(args);