gprof is a GNU tool used for code profiling.
I used to do all my Linux profiling with gprof. However, with my multi-threaded application, it's output appears to be …
c++ multithreading profiling gprofHow can we list all the functions being called in an application. I tried using GDB but its backtrace list …
gdb callstack gprofI am interested in getting the profiling of some number crunching program. I compiled it with -g and -pg options …
bash gprofI'm trying to understand how the -pg (or -p) flag works when compiling C code with gcc. The official gcc …
gcc compilation gprof compiler-flagswhen using gprof: $ gprof options [executable-file [profile-data-files...]] [> outfile] if you have options to pass to the executable like: gprof …
c++ debugging gprof