将 gprof 与 pthread 结合使用
gprof 可以用来分析使用 pthread 的多线程程序吗? 也就是说,它的输出是否包括所有线程所使用的时间?
Can gprof be used to profile a multi-threaded program that uses pthreads? That is, will its output include the time used in all the threads?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,借助此处描述的解决方法是可能的。
Yes, it is possible with the help of a workaround described here.
您是否考虑过pstack? 它在多线程下工作得很好,并且有利于通过 stackshot 方法发现性能问题。
gprof 就是这样,但你很可能可以做得更好。
Have you considered pstack? It works fine with multiple threads, and it is good for finding performance problems by the stackshot method.
gprof is what it is, but chances are you can do better.