]>
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 PB |
13 | |
14 | void qemu_timer_notify_cb(void *opaque, QEMUClockType type) | |
15 | { | |
16 | qemu_notify_event(); | |
17 | } |