I'm using Visual Studio 2010. Often when I'm debugging something (C++) and I e.g. hit the pause button (Break All) in Visual Studio, the break occurs in a standard library such as xstring, xmemory, etc. I don't care about debugging these libraries... I only want to debug my own code. Is there any way to tell Visual Studio to NOT debug these libraries?
|
You should use F5 to start debug your program, along with setting breakpoints (or conditional, data breakpoints). Or you can just start with F11 or F10 to start from |
|||||
|
|
When you hit the pause button (Break All) the debugger breaks into each thread wherever the thread happens to be at the moment. If you think about it for a moment you'll realize that the debugger can't wait until it's in your code (or whatever the debugger might believe is code you care about). For example, the thread might be blocked waiting for I/O that will never complete and would therefore never get back to your code. What you can do is use the call stack to find out where the thread is in your code and set a breakpoint there and run. Or often just doing "Step Out" operations or even "Step Over" operations will quickly get you back to your code. |
|||
|
