summaryrefslogtreecommitdiff
path: root/src/vm/excep.cpp
diff options
context:
space:
mode:
authorJonghyun Park <parjong@gmail.com>2017-02-22 23:43:30 +0900
committerJan Vorlicek <janvorli@microsoft.com>2017-02-22 15:43:30 +0100
commit1f5cae07e65d646fd57fdca7376d4b2f1dccad00 (patch)
treed89e5551e9c3e781285f33cc4d8c74dfc9d2715c /src/vm/excep.cpp
parent0b4e58ac7a455640a5410b6f647ca3044426ea56 (diff)
downloadcoreclr-1f5cae07e65d646fd57fdca7376d4b2f1dccad00.tar.gz
coreclr-1f5cae07e65d646fd57fdca7376d4b2f1dccad00.tar.bz2
coreclr-1f5cae07e65d646fd57fdca7376d4b2f1dccad00.zip
Clean up ClrUnwindEx (#9482)
* Clean up ClrUnwindEx
Diffstat (limited to 'src/vm/excep.cpp')
-rw-r--r--src/vm/excep.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vm/excep.cpp b/src/vm/excep.cpp
index a9c38eee2f..6c427399c3 100644
--- a/src/vm/excep.cpp
+++ b/src/vm/excep.cpp
@@ -4003,6 +4003,7 @@ LONG NotifyDebuggerLastChance(Thread *pThread,
UNINSTALL_NESTED_EXCEPTION_HANDLER();
+#ifdef DEBUGGER_EXCEPTION_INTERCEPTION_SUPPORTED
EX_TRY
{
// if the debugger wants to intercept the unhandled exception then we immediately unwind without returning
@@ -4022,6 +4023,7 @@ LONG NotifyDebuggerLastChance(Thread *pThread,
{
}
EX_END_CATCH(SwallowAllExceptions);
+#endif // DEBUGGER_EXCEPTION_INTERCEPTION_SUPPORTED
return retval;
}