mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
aio / timers: On timer modification, qemu_notify or aio_notify
On qemu_mod_timer_ns, ensure qemu_notify or aio_notify is called to end the appropriate poll(), irrespective of use_icount value. On qemu_clock_enable, ensure qemu_notify or aio_notify is called for all QEMUTimerLists attached to the QEMUClock. Signed-off-by: Alex Bligh <alex@alex.org.uk> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
7b595f35d8
commit
b1bbfe72ec
2 changed files with 19 additions and 3 deletions
|
@ -135,6 +135,15 @@ bool qemu_clock_use_for_deadline(QEMUClock *clock);
|
|||
*/
|
||||
QEMUTimerList *qemu_clock_get_main_loop_timerlist(QEMUClock *clock);
|
||||
|
||||
/**
|
||||
* qemu_clock_nofify:
|
||||
* @clock: the clock to operate on
|
||||
*
|
||||
* Call the notifier callback connected with the default timer
|
||||
* list linked to the clock, or qemu_notify() if none.
|
||||
*/
|
||||
void qemu_clock_notify(QEMUClock *clock);
|
||||
|
||||
/**
|
||||
* timerlist_new:
|
||||
* @type: the clock type to associate with the timerlist
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue