c_cpp 其中来自libuv的timer.c的uv_timer_start是从timer_wrap.cc中的c ++ Start函数调用的
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 其中来自libuv的timer.c的uv_timer_start是从timer_wrap.cc中的c ++ Start函数调用的相关的知识,希望对你有一定的参考价值。
static void Start(const FunctionCallbackInfo<Value>& args) {
TimerWrap* wrap;
ASSIGN_OR_RETURN_UNWRAP(&wrap, args.Holder());
CHECK(HandleWrap::IsAlive(wrap));
int64_t timeout = args[0]->IntegerValue();
int err = uv_timer_start(&wrap->handle_, OnTimeout, timeout, 0);
args.GetReturnValue().Set(err);
}
以上是关于c_cpp 其中来自libuv的timer.c的uv_timer_start是从timer_wrap.cc中的c ++ Start函数调用的的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp #/timer.c里
libuv之一:libuv介绍
libuv 中 sd-bus 的事件循环处理
什么是libuv?
libuv之二:libuv基础
libuv 中文编程指南