2 * Compatibility for qemu-img/qemu-nbd
4 * Copyright IBM, Corp. 2008
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
16 #include "qemu-common.h"
17 #include "monitor/monitor.h"
18 #include "qemu/timer.h"
20 #include "migration/migration.h"
21 #include "qemu/main-loop.h"
22 #include "sysemu/sysemu.h"
23 #include "qemu/sockets.h"
24 #include "slirp/libslirp.h"
34 const char *qemu_get_vm_name(void)
41 void vm_stop(RunState state
)
46 int monitor_cur_is_qmp(void)
51 void monitor_set_error(Monitor
*mon
, QError
*qerror
)
55 void monitor_vprintf(Monitor
*mon
, const char *fmt
, va_list ap
)
59 void monitor_printf(Monitor
*mon
, const char *fmt
, ...)
63 void monitor_print_filename(Monitor
*mon
, const char *filename
)
67 void monitor_protocol_event(MonitorEvent event
, QObject
*data
)
71 int64_t cpu_get_clock(void)
73 return get_clock_realtime();
76 int64_t cpu_get_icount(void)
81 void qemu_mutex_lock_iothread(void)
85 void qemu_mutex_unlock_iothread(void)
91 void qemu_clock_warp(QEMUClock
*clock
)
95 void slirp_update_timeout(uint32_t *timeout
)
99 void slirp_select_fill(int *pnfds
, fd_set
*readfds
,
100 fd_set
*writefds
, fd_set
*xfds
)
104 void slirp_select_poll(fd_set
*readfds
, fd_set
*writefds
,
105 fd_set
*xfds
, int select_error
)
109 void migrate_add_blocker(Error
*reason
)
113 void migrate_del_blocker(Error
*reason
)