]>
Commit | Line | Data |
---|---|---|
87c9b5e0 | 1 | #include "qemu/osdep.h" |
5708fc66 PB |
2 | #include "qemu-common.h" |
3 | #include "qemu/timer.h" | |
4b4629d9 | 4 | #include "sysemu/cpus.h" |
3f53bc61 | 5 | #include "qemu/main-loop.h" |
5708fc66 PB |
6 | |
7 | int use_icount; | |
8 | ||
9 | int64_t cpu_get_icount(void) | |
10 | { | |
11 | abort(); | |
12 | } | |
3f53bc61 | 13 | |
74c0b816 PB |
14 | int64_t cpu_get_icount_raw(void) |
15 | { | |
16 | abort(); | |
17 | } | |
18 | ||
3f53bc61 PB |
19 | void qemu_timer_notify_cb(void *opaque, QEMUClockType type) |
20 | { | |
21 | qemu_notify_event(); | |
22 | } |