git://git.qemu.org
/
qemu.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
spapr: Workaround for broken radix guests
[qemu.git]
/
stubs
/
cpu-get-icount.c
1
#include
"qemu/osdep.h"
2
#include
"qemu-common.h"
3
#include
"qemu/timer.h"
4
#include
"sysemu/cpus.h"
5
#include
"qemu/main-loop.h"
6
7
int
use_icount
;
8
9
int64_t
cpu_get_icount
(
void
)
10
{
11
abort
();
12
}
13
14
void
qemu_timer_notify_cb
(
void
*
opaque
,
QEMUClockType type
)
15
{
16
qemu_notify_event
();
17
}