]>
Commit | Line | Data |
---|---|---|
03ff3ca3 AL |
1 | /* |
2 | * Compatibility for qemu-img/qemu-nbd | |
3 | * | |
4 | * Copyright IBM, Corp. 2008 | |
5 | * | |
6 | * Authors: | |
7 | * Anthony Liguori <[email protected]> | |
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 | ||
21 | QEMUClock *rt_clock; | |
22 | ||
0bf9e31a BS |
23 | FILE *logfile; |
24 | ||
03ff3ca3 AL |
25 | struct QEMUBH |
26 | { | |
27 | QEMUBHFunc *cb; | |
28 | void *opaque; | |
29 | }; | |
30 | ||
9e472e10 AL |
31 | void qemu_service_io(void) |
32 | { | |
33 | } | |
34 | ||
526f0ac1 MA |
35 | Monitor *cur_mon; |
36 | ||
37 | int monitor_cur_is_qmp(void) | |
38 | { | |
39 | return 0; | |
40 | } | |
41 | ||
42 | void monitor_set_error(Monitor *mon, QError *qerror) | |
43 | { | |
44 | } | |
45 | ||
46 | void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap) | |
47 | { | |
48 | } | |
49 | ||
376253ec | 50 | void monitor_printf(Monitor *mon, const char *fmt, ...) |
03ff3ca3 AL |
51 | { |
52 | } | |
53 | ||
376253ec | 54 | void monitor_print_filename(Monitor *mon, const char *filename) |
03ff3ca3 AL |
55 | { |
56 | } | |
57 | ||
0d1ea871 LC |
58 | void monitor_protocol_event(MonitorEvent event, QObject *data) |
59 | { | |
60 | } | |
61 | ||
03ff3ca3 | 62 | int qemu_set_fd_handler2(int fd, |
7b27a769 | 63 | IOCanReadHandler *fd_read_poll, |
03ff3ca3 AL |
64 | IOHandler *fd_read, |
65 | IOHandler *fd_write, | |
66 | void *opaque) | |
67 | { | |
68 | return 0; | |
69 | } | |
4e59b545 KW |
70 | |
71 | void qemu_notify_event(void) | |
72 | { | |
73 | } |