What steps will reproduce the problem?
1. Run a cpu profile
2. Use pprof --text to display the results
What is the expected output? What do you see instead?
I expect all function names to be visible. Instead, some have pointers instead
of names.
What version of the product are you using? On what operating system?
Version 2.0, Linux.
Please provide any additional information below.
I fixed this locally by modifying the 'ParseLibraries' function in 'pprof' to
accept spaces:
if ($l =~
/^($h)-($h)\s+..x.\s+($h)\s+\S+:\S+\s+\d+\s+([\S|\s]+\.(so|dll|dylib|bundle)((\.
\d+)+\w*(\.\d+){0,3})?)$/i) {
Notice the [\S|\s]+ instead of the original \S+
Original issue reported on code.google.com by mich...@sebesbefut.com on 22 Jul 2014 at 2:38
Original issue reported on code.google.com by
mich...@sebesbefut.com
on 22 Jul 2014 at 2:38