Tagged Questions
2
votes
2answers
354 views
How do I make VC++'s debugger break on exceptions?
I'm trying to debug a problem in a DLL written in C that keeps causing access violations. I'm using Visual C++ 2008, but the code is straight C.
I'm used to Delphi, where if an exception occurs ...
1
vote
1answer
33 views
View integer on memory locations allocated as char in Visual C++ 2008 debugger
I'm using Visual C++ 2008 to write and debug my project. I have a char* pointer. I want to view 4 bytes starting at my pointer as an integer in the debugger. How do I do it? (int)(*pointer) comes to ...
1
vote
0answers
23 views
How to avoid stepping into 3rd party code in Visual Studio
I am working with fairly complex code that is working with several 3rd part libraries. When I want to keep on stepping over (F10) I sometimes end up in 3rd party assembly code. If I deselect the ...
1
vote
3answers
72 views
A weird crash
I have a piece of code that runs in debug mode in VS2008, C++.
The problem is that when I am debugging the code line by line, at a very weird point of the code, it crashes and says:
debug assertion ...
1
vote
2answers
388 views
How to determine which C/C++ objects use most memory
I have a mixed mode application (managed and native) which has a high memory footprint. I already have found out that most of the memory is allocated by native code. I am not talking about a memory ...