diff options
author | Dr. David Alan Gilbert | 2019-07-24 13:58:23 +0200 |
---|---|---|
committer | Paolo Bonzini | 2019-08-20 17:26:21 +0200 |
commit | 3c2d4c8aa6a98366c9fe2f36305f12199257a7d5 (patch) | |
tree | c212440f89e1c9daa6751fa3548e95fad3074bd0 /include/qemu | |
parent | replay: Remove host_clock_last (diff) | |
download | qemu-3c2d4c8aa6a98366c9fe2f36305f12199257a7d5.tar.gz qemu-3c2d4c8aa6a98366c9fe2f36305f12199257a7d5.tar.xz qemu-3c2d4c8aa6a98366c9fe2f36305f12199257a7d5.zip |
timer: last, remove last bits of last
The reset notifiers kept a 'last' counter to notice jumps;
now that we've remove the notifier we don't need to keep 'last'.
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-Id: <20190724115823.4199-5-dgilbert@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/qemu')
-rw-r--r-- | include/qemu/timer.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/include/qemu/timer.h b/include/qemu/timer.h index 6817c78ef4..5bcab935f6 100644 --- a/include/qemu/timer.h +++ b/include/qemu/timer.h @@ -248,19 +248,6 @@ bool qemu_clock_run_timers(QEMUClockType type); */ bool qemu_clock_run_all_timers(void); -/** - * qemu_clock_get_last: - * - * Returns last clock query time. - */ -uint64_t qemu_clock_get_last(QEMUClockType type); -/** - * qemu_clock_set_last: - * - * Sets last clock query time. - */ -void qemu_clock_set_last(QEMUClockType type, uint64_t last); - /* * QEMUTimerList |