Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
9 lines
173 B
C
9 lines
173 B
C
#include "qemu/osdep.h"
|
|
#include "system/cpu-timers.h"
|
|
#include "qemu/main-loop.h"
|
|
|
|
void qemu_timer_notify_cb(void *opaque, QEMUClockType type)
|
|
{
|
|
qemu_notify_event();
|
|
}
|