aboutsummaryrefslogtreecommitdiff
path: root/stubs/cpu-get-icount.c
blob: b35f84463861d20cd433208b7918394642d918cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "qemu/osdep.h"
#include "qemu/timer.h"
#include "sysemu/cpus.h"
#include "qemu/main-loop.h"

int use_icount;

int64_t cpu_get_icount(void)
{
    abort();
}

int64_t cpu_get_icount_raw(void)
{
    abort();
}

void qemu_timer_notify_cb(void *opaque, QEMUClockType type)
{
    qemu_notify_event();
}