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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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. |
|||
|
|