]> Git Repo - qemu.git/blob - qemu-tool.c
trace: Remove %s in grlib trace events
[qemu.git] / qemu-tool.c
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"
15 #include "monitor.h"
16 #include "qemu-timer.h"
17 #include "qemu-log.h"
18
19 #include <sys/time.h>
20
21 QEMUClock *rt_clock;
22
23 FILE *logfile;
24
25 struct QEMUBH
26 {
27     QEMUBHFunc *cb;
28     void *opaque;
29 };
30
31 void qemu_service_io(void)
32 {
33 }
34
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
50 void monitor_printf(Monitor *mon, const char *fmt, ...)
51 {
52 }
53
54 void monitor_print_filename(Monitor *mon, const char *filename)
55 {
56 }
57
58 void monitor_protocol_event(MonitorEvent event, QObject *data)
59 {
60 }
61
62 int qemu_set_fd_handler2(int fd,
63                          IOCanReadHandler *fd_read_poll,
64                          IOHandler *fd_read,
65                          IOHandler *fd_write,
66                          void *opaque)
67 {
68     return 0;
69 }
70
71 void qemu_notify_event(void)
72 {
73 }
This page took 0.027056 seconds and 4 git commands to generate.