summaryrefslogtreecommitdiff
path: root/src/vm/exceptionhandling.h
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/exceptionhandling.h
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/exceptionhandling.h')
-rw-r--r--src/vm/exceptionhandling.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vm/exceptionhandling.h b/src/vm/exceptionhandling.h
index c6fe35ae09..71bcab749f 100644
--- a/src/vm/exceptionhandling.h
+++ b/src/vm/exceptionhandling.h
@@ -26,11 +26,13 @@ ProcessCLRException(IN PEXCEPTION_RECORD pExceptionRecord
IN OUT PT_DISPATCHER_CONTEXT pDispatcherContext);
+#ifndef FEATURE_PAL
void __declspec(noinline)
ClrUnwindEx(EXCEPTION_RECORD* pExceptionRecord,
UINT_PTR ReturnValue,
UINT_PTR TargetIP,
UINT_PTR TargetFrameSp);
+#endif // !FEATURE_PAL
typedef DWORD_PTR (HandlerFn)(UINT_PTR uStackFrame, Object* pExceptionObj);