vote up 0 vote down star

I'm using Visual C++ 2003 to debug a program remotely via TCP/IP.

I had set the Win32 exception c00000005, "Access violation," to break into the debugger when thrown. Then, I set it back to "Use parent setting." The setting for the parent, Win32 Exceptions, is to continue when the exception is thrown.

Now, when I debug the program, it breaks each time that exception is thrown, forcing me to click Continue to let it keep debugging. How do I get it to stop breaking like this?

flag

67% accept rate

4 Answers

vote up 2 vote down check

I'd like to support Will Dean's answer

An access violation sounds like an actual bug in your code. It's not something I'd expect the underlying C/++ Runtime to be throwing and catching internally.

The 'first-chance-exceptions' feature is so you can intercept things which get 'caught' in code, using the debugger, and have a look. If there's nothing 'catching' that exception (which makes sense, why on earth would you catch and ignore access violations?), then it will trigger the debugger regardless of what options you may have set.

link|flag
vote up 1 vote down

Ctrl+Alt+E (or Debug\Exceptions)

From there you can select which exceptions break.

link|flag
vote up 3 vote down

Is this an exception that your code would actually handle if you weren't running in the debugger?

link|flag
vote up -1 vote down

i cant stop my debugger and i want to play black and white 2 plz some 1 help me

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.