include: update outdated code comment (#4037)
I believe it's fair to say at this point that these functions are not going to be removed in v0.12. They are still deprecated though.
This commit is contained in:
parent
65c1402ee6
commit
e8ec610f28
@ -289,13 +289,13 @@ UV_EXTERN int uv_loop_init(uv_loop_t* loop);
|
|||||||
UV_EXTERN int uv_loop_close(uv_loop_t* loop);
|
UV_EXTERN int uv_loop_close(uv_loop_t* loop);
|
||||||
/*
|
/*
|
||||||
* NOTE:
|
* NOTE:
|
||||||
* This function is DEPRECATED (to be removed after 0.12), users should
|
* This function is DEPRECATED, users should
|
||||||
* allocate the loop manually and use uv_loop_init instead.
|
* allocate the loop manually and use uv_loop_init instead.
|
||||||
*/
|
*/
|
||||||
UV_EXTERN uv_loop_t* uv_loop_new(void);
|
UV_EXTERN uv_loop_t* uv_loop_new(void);
|
||||||
/*
|
/*
|
||||||
* NOTE:
|
* NOTE:
|
||||||
* This function is DEPRECATED (to be removed after 0.12). Users should use
|
* This function is DEPRECATED. Users should use
|
||||||
* uv_loop_close and free the memory manually instead.
|
* uv_loop_close and free the memory manually instead.
|
||||||
*/
|
*/
|
||||||
UV_EXTERN void uv_loop_delete(uv_loop_t*);
|
UV_EXTERN void uv_loop_delete(uv_loop_t*);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user