Top "Gprof" questions

gprof is a GNU tool used for code profiling.

How exactly does gprof work?

This is something of a bloated question, so I apologize ahead of time. I'm curious about how gprof works on …

profiling profiler gprof
How to profile from the command line on Mac OS X?

I'm trying to profile C/C++ code on Mac OS X using command line tools, I use -pg option with …

c++ c macos profiling gprof
Profiling C code on Windows when using Eclipse

I know I can profile my code with gprof and kprof on Linux. Is there a comparable alternative to these …

c windows eclipse profiling gprof
How to modify a C program so that gprof can profile it?

When I run gprof on my C program it says no time accumulated for my program and shows 0 time for …

c linux profiling profiler gprof
Which is the most reliable profiling tool gprof or kcachegrind?

Profiling some C++ number crunching code with both gprof and kcachegrind gives similar results for the functions that contribute most …

c++ profiling gprof kcachegrind