recording call stack in Visual Studio
debugging, visual-studio
Solution
Take a look at this codeproject example which uses the StackWalk64 API.
Problem
I'm trying to debug a really large c++/c program in Visual Studio. Changing value of one parameter changes the result dramatically. I want to record a call stacks for both runs and diff them. Does anybody know how to dump a call stack to a file in VS without setting breakpoints and using Select ALL/Copy in the window? Thanks.