xref: /openbmc/qemu/stubs/qemu-timer-notify-cb.c (revision 33629b82aeadb070a803e5887d3a5de59b1c95c9)
1 #include "qemu/osdep.h"
2 #include "system/cpu-timers.h"
3 #include "qemu/main-loop.h"
4 
5 void qemu_timer_notify_cb(void *opaque, QEMUClockType type)
6 {
7     qemu_notify_event();
8 }
9