]> git.proxmox.com Git - qemu.git/blame - qemu-tool.c
PXE: Refresh all PXE ROMs from the ipxe submodule
[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"
dc786bc9 18#include "sysemu.h"
03ff3ca3
AL
19
20#include <sys/time.h>
21
22QEMUClock *rt_clock;
23
0bf9e31a
BS
24FILE *logfile;
25
03ff3ca3
AL
26struct QEMUBH
27{
28 QEMUBHFunc *cb;
29 void *opaque;
30};
31
9e472e10
AL
32void qemu_service_io(void)
33{
34}
35
526f0ac1
MA
36Monitor *cur_mon;
37
38int monitor_cur_is_qmp(void)
39{
40 return 0;
41}
42
43void monitor_set_error(Monitor *mon, QError *qerror)
44{
45}
46
47void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
48{
49}
50
376253ec 51void monitor_printf(Monitor *mon, const char *fmt, ...)
03ff3ca3
AL
52{
53}
54
376253ec 55void monitor_print_filename(Monitor *mon, const char *filename)
03ff3ca3
AL
56{
57}
58
0d1ea871
LC
59void monitor_protocol_event(MonitorEvent event, QObject *data)
60{
61}
62
03ff3ca3 63int qemu_set_fd_handler2(int fd,
7b27a769 64 IOCanReadHandler *fd_read_poll,
03ff3ca3
AL
65 IOHandler *fd_read,
66 IOHandler *fd_write,
67 void *opaque)
68{
69 return 0;
70}
4e59b545
KW
71
72void qemu_notify_event(void)
73{
74}