1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

unix, windows: uv_now constness

uv_now doesnt require modification of uv_loop_t as such argument is
changed to a const uv_loop_t* as this more in spirit with remaining
API in libuv.
This commit is contained in:
Rasmus Christian Pedersen 2014-04-28 21:38:44 +02:00 committed by Saúl Ibarra Corretgé
parent 4d905fbe07
commit 87ae69b638
2 changed files with 2 additions and 2 deletions

View File

@ -345,7 +345,7 @@ UV_EXTERN void uv_update_time(uv_loop_t*);
*
* Use uv_hrtime() if you need sub-millisecond granularity.
*/
UV_EXTERN uint64_t uv_now(uv_loop_t*);
UV_EXTERN uint64_t uv_now(const uv_loop_t*);
/*
* Get backend file descriptor. Only kqueue, epoll and event ports are

View File

@ -384,7 +384,7 @@ void uv_stop(uv_loop_t* loop) {
}
uint64_t uv_now(uv_loop_t* loop) {
uint64_t uv_now(const uv_loop_t* loop) {
return loop->time;
}