I'm running callgrind on an executable in an attempt to see what functions are being called and from where in my application. I'm converting the output of callgrind into a dot file using gprof2dot so that I can view the call graph.
The issue is that all function calls show up in callgrind, including all external libraries my application is linked against, including system calls. I'd like to be able to tell callgrind to limit the resolution only to functions defined within a list of libraries which I'm interested in.
Is this possible using callgrind? are there other tools better suited for this job?