Re: DebugBreak continue issue
- From: "William DePalo [MVP VC++]" <willd.no.spam@xxxxxxxx>
- Date: Mon, 3 Mar 2008 10:22:07 -0500
"George" <George@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:39BC669A-EFAD-4C07-8668-FFE3216ADA07@xxxxxxxxxxxxxxxx
I am trying the continue function triggered by JIT debugger. As mentioned
in
MSDN,
[url]http://msdn2.microsoft.com/zh-cn/library/h22dk1y6(en-us).aspx[/url]
--------------------
Continue
Allows execution to continue, giving the exception handler a chance to
handle the exception. This option is not available for certain types of
exceptions. Continue will allow the application to continue. In a native
application, it will cause the exception to be rethrown. In a managed
application, it will either cause the program to terminate or the
exception
to be handled by a hosting application.
--------------------
Case I: You run under a debugger
The program stops at the breakpoint
Case II: You don't run under the debugger
DebugBreak() raises an exception. _Your_ handler catches it. It does
just about nothing.
The MSDN blurb describes what happens when a breakpoint exception goes
unhandled.
Regards,
Will
.
- Follow-Ups:
- Re: DebugBreak continue issue
- From: George
- Re: DebugBreak continue issue
- References:
- DebugBreak continue issue
- From: George
- DebugBreak continue issue
- Prev by Date: Re: Copy Constructors and Assignment Operator, When should I use?
- Next by Date: Re: [OT]: Windows SDK 3.1 help
- Previous by thread: DebugBreak continue issue
- Next by thread: Re: DebugBreak continue issue
- Index(es):
Relevant Pages
|
Loading