[Recommended Books] The List of Recommended Debugging Books was Updated
Check this out.
Comments
Anonymous
November 01, 2008
PingBack from http://blog.a-foton.ru/index.php/2008/11/02/recommended-books-the-list-of-recommended-debugging-books-was-updated/Anonymous
December 16, 2008
The comment has been removedAnonymous
December 17, 2008
Hey nativecpp, do you know if the symbol path is right? Have you tried to use another debugger, like WinDbg, to see if the results are consistent? When using WinDbg make sure you're including the paths for the pdb files in the Symbol File Path window. If it works then the problem may be on the Visual Studio side (some settings) and not the symbols. Hope it helps. RobertoAnonymous
December 18, 2008
I figured that out. When attached to the process, there is an option to specify code type, i.e. I need to select both managed and unmanaged. One interesting observation is that with both managed and unmanaged selected, when I stopped debugger (VS2008), it terminated the process. However, if I selected only managed, stopping the debugger(VS2008), it didn't stop the app which is nice. Thanks