]> git.proxmox.com Git - mirror_qemu.git/commitdiff
timer: Fix timer_mod_anticipate() documentation
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Sun, 20 Sep 2020 15:50:42 +0000 (17:50 +0200)
committerLaurent Vivier <laurent@vivier.eu>
Wed, 23 Sep 2020 17:13:01 +0000 (19:13 +0200)
timer_mod_anticipate() will be scaled to the timer unit,
which is not always nanosecond. Fix the documentation.

Fixes: add40e9777d ("timer: add timer_mod_anticipate*")
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20200920155042.400737-1-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
include/qemu/timer.h

index 6a8b48b5a9d893db828a3023b6d41c7bc002a2fa..1dc880e94e76f9ebc5d5fdbcbb2ed8518bfd6489 100644 (file)
@@ -679,7 +679,7 @@ void timer_mod(QEMUTimer *ts, int64_t expire_timer);
 /**
  * timer_mod_anticipate:
  * @ts: the timer
- * @expire_time: the expiry time in nanoseconds
+ * @expire_time: the expire time in the units associated with the timer
  *
  * Modify a timer to expire at @expire_time or the current time, whichever
  * comes earlier, taking into account the scale associated with the timer.