Reputation:
I recently read in a magazine that there is a new commercial developer tool for Windows which monitors a C++ program's execution and creates traces for visual inspection. I, however, cannot remember the tool's name (it is not Insure++ and also not BugTrapper). In the resulting trace, you see every code line that was visited, you can see in which order it happened, and you can see the call stack at any point in the lifetime of the program.
Does anyone know this tool's name or a similar tool?
Many thanks in advance
/Frank
Upvotes: 4
Views: 3363
Reputation: 317
I use GDB and I still love it.
Edit: Thanks for @T.E.D, it may be GPROF which report hits count on code line/segment visited.
Upvotes: 1