]>
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; | |
5fc09ca5 | 22 | QEMUClock *vm_clock; |
03ff3ca3 | 23 | |
0bf9e31a BS |
24 | FILE *logfile; |
25 | ||
03ff3ca3 AL |
26 | struct QEMUBH |
27 | { | |
28 | QEMUBHFunc *cb; | |
29 | void *opaque; | |
30 | }; | |
31 | ||
526f0ac1 MA |
32 | Monitor *cur_mon; |
33 | ||
34 | int monitor_cur_is_qmp(void) | |
35 | { | |
36 | return 0; | |
37 | } | |
38 | ||
39 | void monitor_set_error(Monitor *mon, QError *qerror) | |
40 | { | |
41 | } | |
42 | ||
43 | void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap) | |
44 | { | |
45 | } | |
46 | ||
376253ec | 47 | void monitor_printf(Monitor *mon, const char *fmt, ...) |
03ff3ca3 AL |
48 | { |
49 | } | |
50 | ||
376253ec | 51 | void monitor_print_filename(Monitor *mon, const char *filename) |
03ff3ca3 AL |
52 | { |
53 | } | |
54 | ||
0d1ea871 LC |
55 | void monitor_protocol_event(MonitorEvent event, QObject *data) |
56 | { | |
57 | } | |
58 | ||
03ff3ca3 | 59 | int qemu_set_fd_handler2(int fd, |
7b27a769 | 60 | IOCanReadHandler *fd_read_poll, |
03ff3ca3 AL |
61 | IOHandler *fd_read, |
62 | IOHandler *fd_write, | |
63 | void *opaque) | |
64 | { | |
65 | return 0; | |
66 | } | |
4e59b545 KW |
67 | |
68 | void qemu_notify_event(void) | |
69 | { | |
70 | } | |
5fc09ca5 SH |
71 | |
72 | QEMUTimer *qemu_new_timer(QEMUClock *clock, int scale, | |
73 | QEMUTimerCB *cb, void *opaque) | |
74 | { | |
7267c094 | 75 | return g_malloc(1); |
5fc09ca5 SH |
76 | } |
77 | ||
78 | void qemu_free_timer(QEMUTimer *ts) | |
79 | { | |
7267c094 | 80 | g_free(ts); |
5fc09ca5 SH |
81 | } |
82 | ||
83 | void qemu_del_timer(QEMUTimer *ts) | |
84 | { | |
85 | } | |
86 | ||
87 | void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time) | |
88 | { | |
89 | } | |
90 | ||
91 | int64_t qemu_get_clock_ns(QEMUClock *clock) | |
92 | { | |
93 | return 0; | |
94 | } |