v8 中使用 _pthread_cond_timedwait 函数的目的是什么?
在带有网页的 chrome (--prof) 选项的分析日志中,大部分刻度由 C++ 中的 _pthread_cond_timedwait 函数消耗。
这是用来做什么的?它是否被分析线程使用?或者正在等待某些网络请求完成加载?
另外,这里和 V8 的分析工具中使用的这些“刻度”术语是什么?
In the profiling logs of chrome (--prof) option with a webpage, a majority of ticks is consumed by _pthread_cond_timedwait function in C++.
What purpose is this used for? Is it used by the profiling thread? or is it waiting for some network request to finish loading?
Also, what are these 'ticks' terminology used in here and V8's profiling tools?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这意味着线程正在休眠,等待执行某些操作。也许它正在等待网络请求,或者可能正在等待其他事情,例如下一个计划的回调。
It means that the thread was sleeping, waiting for something to do. Maybe it was waiting for a network request, or maybe for something else, such as the next scheduled callback.