]> git.proxmox.com Git - qemu.git/blame - qemu-tool.c
QMP: Don't use do_info()
[qemu.git] / qemu-tool.c
CommitLineData
03ff3ca3
AL
1/*
2 * Compatibility for qemu-img/qemu-nbd
3 *
4 * Copyright IBM, Corp. 2008
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13
14#include "qemu-common.h"
376253ec 15#include "monitor.h"
03ff3ca3 16#include "qemu-timer.h"
0bf9e31a 17#include "qemu-log.h"
03ff3ca3
AL
18
19#include <sys/time.h>
20
21QEMUClock *rt_clock;
22
0bf9e31a
BS
23FILE *logfile;
24
03ff3ca3
AL
25struct QEMUBH
26{
27 QEMUBHFunc *cb;
28 void *opaque;
29};
30
9e472e10
AL
31void qemu_service_io(void)
32{
33}
34
526f0ac1
MA
35Monitor *cur_mon;
36
37int monitor_cur_is_qmp(void)
38{
39 return 0;
40}
41
42void monitor_set_error(Monitor *mon, QError *qerror)
43{
44}
45
46void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
47{
48}
49
376253ec 50void monitor_printf(Monitor *mon, const char *fmt, ...)
03ff3ca3
AL
51{
52}
53
376253ec 54void monitor_print_filename(Monitor *mon, const char *filename)
03ff3ca3
AL
55{
56}
57
9a1e9481
KW
58void async_context_push(void)
59{
60}
61
62void async_context_pop(void)
63{
64}
65
66int get_async_context_id(void)
67{
68 return 0;
69}
70
0d1ea871
LC
71void monitor_protocol_event(MonitorEvent event, QObject *data)
72{
73}
74
03ff3ca3
AL
75QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque)
76{
77 QEMUBH *bh;
78
79 bh = qemu_malloc(sizeof(*bh));
1eec614b
AL
80 bh->cb = cb;
81 bh->opaque = opaque;
03ff3ca3
AL
82
83 return bh;
84}
85
86int qemu_bh_poll(void)
87{
88 return 0;
89}
90
91void qemu_bh_schedule(QEMUBH *bh)
92{
93 bh->cb(bh->opaque);
94}
95
96void qemu_bh_cancel(QEMUBH *bh)
97{
98}
99
100void qemu_bh_delete(QEMUBH *bh)
101{
102 qemu_free(bh);
103}
104
105int qemu_set_fd_handler2(int fd,
7b27a769 106 IOCanReadHandler *fd_read_poll,
03ff3ca3
AL
107 IOHandler *fd_read,
108 IOHandler *fd_write,
109 void *opaque)
110{
111 return 0;
112}
113
114int64_t qemu_get_clock(QEMUClock *clock)
115{
d92620c8 116 qemu_timeval tv;
474ad834 117 qemu_gettimeofday(&tv);
03ff3ca3
AL
118 return (tv.tv_sec * 1000000000LL + (tv.tv_usec * 1000)) / 1000000;
119}