diff options
Diffstat (limited to 'lldb/source/Plugins/Process/Windows/ForwardDecl.h')
-rw-r--r-- | lldb/source/Plugins/Process/Windows/ForwardDecl.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/source/Plugins/Process/Windows/ForwardDecl.h b/lldb/source/Plugins/Process/Windows/ForwardDecl.h index 2fa9b9e5d31..249dfe88e29 100644 --- a/lldb/source/Plugins/Process/Windows/ForwardDecl.h +++ b/lldb/source/Plugins/Process/Windows/ForwardDecl.h @@ -18,11 +18,11 @@ class ProcessWindows; // the exception. enum class ExceptionResult { - Handled, // The delegate handled the exception. Continue. - NotHandled, // The delegate did not handle the exception. Keep - // searching. - WillHandle // The delegate will handle the exception. Do not - // process further debug events until it finishes. + BreakInDebugger, // Break in the debugger and give the user a chance to interact with + // the program before continuing. + MaskException, // Eat the exception and don't let the application know it occurred. + SendToApplication // Send the exception to the application to be handled as if there were + // no debugger attached. }; namespace lldb_private |