diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2017-03-03 11:50:29 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2017-03-14 13:28:29 +0100 |
commit | 3f53bc61a404cd1d13fdba8441282a33a755f8c6 (patch) | |
tree | eb99182fd28668a99973411d87f6b0727096400b /include/qemu/timer.h | |
parent | d2528bdc19988db73056be75dd9bf52eeee620f5 (diff) | |
download | qemu-3f53bc61a404cd1d13fdba8441282a33a755f8c6.zip qemu-3f53bc61a404cd1d13fdba8441282a33a755f8c6.tar.gz qemu-3f53bc61a404cd1d13fdba8441282a33a755f8c6.tar.bz2 |
cpus: define QEMUTimerListNotifyCB for QEMU system emulation
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>
Diffstat (limited to 'include/qemu/timer.h')
-rw-r--r-- | include/qemu/timer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/qemu/timer.h b/include/qemu/timer.h index 91cd8c8..1441b42 100644 --- a/include/qemu/timer.h +++ b/include/qemu/timer.h @@ -59,7 +59,7 @@ struct QEMUTimerListGroup { }; typedef void QEMUTimerCB(void *opaque); -typedef void QEMUTimerListNotifyCB(void *opaque); +typedef void QEMUTimerListNotifyCB(void *opaque, QEMUClockType type); struct QEMUTimer { int64_t expire_time; /* in nanoseconds */ @@ -776,7 +776,7 @@ static inline int64_t qemu_soonest_timeout(int64_t timeout1, int64_t timeout2) * * Initialise the clock & timer infrastructure */ -void init_clocks(void); +void init_clocks(QEMUTimerListNotifyCB *notify_cb); int64_t cpu_get_ticks(void); /* Caller must hold BQL */ |