3f53bc61a4
There is no change for now, because the callback just invokes qemu_notify_event. Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
18 lines
280 B
C
18 lines
280 B
C
#include "qemu/osdep.h"
|
|
#include "qemu-common.h"
|
|
#include "qemu/timer.h"
|
|
#include "sysemu/cpus.h"
|
|
#include "qemu/main-loop.h"
|
|
|
|
int use_icount;
|
|
|
|
int64_t cpu_get_icount(void)
|
|
{
|
|
abort();
|
|
}
|
|
|
|
void qemu_timer_notify_cb(void *opaque, QEMUClockType type)
|
|
{
|
|
qemu_notify_event();
|
|
}
|