Pthread:起始位置有什么不同
一个简单的问题。如果一个线程启动多个子线程有什么区别吗?而不是全部从主要开始?
现阶段我只考虑表现。 谢谢。
A simple question. Does it make any difference if one pthread starts multiple sub-pthreads? rather than all of them started from the main ?
I consider only performance at this stage.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有性能差异。
There is no performance difference.
无论哪种方式,你创建一个线程都不会产生任何影响。它只与您在代码中使用的 pthread 的效率有关。
Either way your creating a thread it wont make a difference. It only matters on the efficiency of the pthreads your using in the code.