diff options
author | Luca Adrian L <info@lucalindhorst.de> | 2022-02-08 14:23:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-08 14:23:39 +0100 |
commit | 50c1d00839d050cc3071cdba27083ceca3593a33 (patch) | |
tree | 9418079c9a04daca4878376a8651f3caebb75a63 /docs/src | |
parent | de24da8c111687a2871d528052f5442e9b371ca1 (diff) | |
download | libuv-50c1d00839d050cc3071cdba27083ceca3593a33.tar.gz libuv-50c1d00839d050cc3071cdba27083ceca3593a33.zip |
win: return fractional seconds in uv_uptime() (#3455)
Some systems return fractional seconds, some return full seconds.
On Windows uptime was artificially rounded down.
Fixes #3447.
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/misc.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/misc.rst b/docs/src/misc.rst index 8017e8e1..38fbb560 100644 --- a/docs/src/misc.rst +++ b/docs/src/misc.rst @@ -312,7 +312,7 @@ API .. c:function:: int uv_uptime(double* uptime) - Gets the current system uptime. + Gets the current system uptime. Depending on the system full or fractional seconds are returned. .. c:function:: int uv_getrusage(uv_rusage_t* rusage) |