From 8ebecf6eabba00a28aef474d42fdfe51051b0de8 Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Wed, 5 Oct 2016 13:40:10 +0200 Subject: [PATCH] doc: add reference to uv_update_time on uv_timer_start MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/libuv/libuv/pull/1079 Reviewed-By: Colin Ihrig Reviewed-By: Saúl Ibarra Corretgé --- docs/src/timer.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/src/timer.rst b/docs/src/timer.rst index 31d733ef..8e11f257 100644 --- a/docs/src/timer.rst +++ b/docs/src/timer.rst @@ -42,6 +42,9 @@ API If `repeat` is non-zero, the callback fires first after `timeout` milliseconds and then repeatedly after `repeat` milliseconds. + .. note:: + Does not update the event loop's concept of "now". See :c:func:`uv_update_time` for more information. + .. c:function:: int uv_timer_stop(uv_timer_t* handle) Stop the timer, the callback will not be called anymore.