aboutsummaryrefslogtreecommitdiff
path: root/stubs/cpu-get-icount.c
blob: 40016132409399f35c78e6b0cc07b03f3fe71dc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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();
}