使用gprof和pthreads

gprof可以用来分析使用pthread的多线程程序吗? 也就是说,它的输出将包括所有线程中使用的时间吗?


是的,这可以在此处描述的解决方法的帮助下进行。


你有没有考虑过pstack ? 它可以在多线程下正常工作,并且适用于通过stackshot方法查找性能问题。 gprof就是这样,但你有可能做得更好。

链接地址: http://www.djcxy.com/p/40343.html

上一篇: Using gprof with pthreads

下一篇: How to modify a C program so that gprof can profile it?