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