]> git.proxmox.com Git - qemu.git/blame - qemu-tool.c
Enable power button even generation.
[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
AL
16#include "sysemu.h"
17#include "qemu-timer.h"
18
19#include <sys/time.h>
20
21QEMUClock *rt_clock;
22
23struct QEMUBH
24{
25 QEMUBHFunc *cb;
26 void *opaque;
27};
28
9e472e10
AL
29void qemu_service_io(void)
30{
31}
32
376253ec
AL
33Monitor *cur_mon;
34
35void monitor_printf(Monitor *mon, const char *fmt, ...)
03ff3ca3
AL
36{
37}
38
376253ec 39void monitor_print_filename(Monitor *mon, const char *filename)
03ff3ca3
AL
40{
41}
42
43QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque)
44{
45 QEMUBH *bh;
46
47 bh = qemu_malloc(sizeof(*bh));
1eec614b
AL
48 bh->cb = cb;
49 bh->opaque = opaque;
03ff3ca3
AL
50
51 return bh;
52}
53
54int qemu_bh_poll(void)
55{
56 return 0;
57}
58
59void qemu_bh_schedule(QEMUBH *bh)
60{
61 bh->cb(bh->opaque);
62}
63
64void qemu_bh_cancel(QEMUBH *bh)
65{
66}
67
68void qemu_bh_delete(QEMUBH *bh)
69{
70 qemu_free(bh);
71}
72
73int qemu_set_fd_handler2(int fd,
74 IOCanRWHandler *fd_read_poll,
75 IOHandler *fd_read,
76 IOHandler *fd_write,
77 void *opaque)
78{
79 return 0;
80}
81
82int64_t qemu_get_clock(QEMUClock *clock)
83{
d92620c8 84 qemu_timeval tv;
474ad834 85 qemu_gettimeofday(&tv);
03ff3ca3
AL
86 return (tv.tv_sec * 1000000000LL + (tv.tv_usec * 1000)) / 1000000;
87}