mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
aio / timers: Remove legacy qemu_clock_deadline & qemu_timerlist_deadline
Remove qemu_clock_deadline and qemu_timerlist_deadline now we are using the ns functions throughout. Signed-off-by: Alex Bligh <alex@alex.org.uk> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
6d32717155
commit
63111b69cc
2 changed files with 0 additions and 36 deletions
|
@ -140,7 +140,6 @@ bool qemu_clock_has_timers(QEMUClock *clock);
|
|||
* an expired timer
|
||||
*/
|
||||
bool qemu_clock_expired(QEMUClock *clock);
|
||||
int64_t qemu_clock_deadline(QEMUClock *clock);
|
||||
|
||||
/**
|
||||
* qemu_clock_deadline_ns:
|
||||
|
@ -245,21 +244,6 @@ bool timerlist_has_timers(QEMUTimerList *timer_list);
|
|||
*/
|
||||
bool timerlist_expired(QEMUTimerList *timer_list);
|
||||
|
||||
/**
|
||||
* timerlist_deadline:
|
||||
* @timer_list: the timer list to operate on
|
||||
*
|
||||
* Determine the deadline for a timer_list. This is
|
||||
* a legacy function which returns INT32_MAX if the
|
||||
* timer list has no timers or if the earliest timer
|
||||
* expires later than INT32_MAX nanoseconds away.
|
||||
*
|
||||
* Returns: the number of nanoseconds until the earliest
|
||||
* timer expires or INT32_MAX in the situations listed
|
||||
* above
|
||||
*/
|
||||
int64_t timerlist_deadline(QEMUTimerList *timer_list);
|
||||
|
||||
/**
|
||||
* timerlist_deadline_ns:
|
||||
* @timer_list: the timer list to operate on
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue