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:
parent
4d905fbe07
commit
87ae69b638
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user