标签:
/* * Initialize the uv_async_t handle. A NULL callback is allowed. * * Note that uv_async_init(), unlike other libuv functions, immediately * starts the handle. To stop the handle again, close it with uv_close(). */ UV_EXTERN int uv_async_init(uv_loop_t*, uv_async_t* async, uv_async_cb async_cb);
发送异步命令时初始化用的,具体也不太了解
标签:
原文地址:http://www.cnblogs.com/zzyoucan/p/4712825.html