summaryrefslogtreecommitdiff
path: root/src/vm/ecalllist.h
diff options
context:
space:
mode:
authorSung Yoon Whang <suwhang@microsoft.com>2019-02-21 17:48:48 -0800
committerGitHub <noreply@github.com>2019-02-21 17:48:48 -0800
commit521e73c0031c84297088381688d464ce619156a9 (patch)
treecf5ee523a5f1135b6c0f5294c606f071167dba45 /src/vm/ecalllist.h
parent2c10ccaefa48d3418d1fc4fbc4f49eee5745b623 (diff)
downloadcoreclr-521e73c0031c84297088381688d464ce619156a9.tar.gz
coreclr-521e73c0031c84297088381688d464ce619156a9.tar.bz2
coreclr-521e73c0031c84297088381688d464ce619156a9.zip
Add exception counter (#22734)
* Add exception counter * Fix build * Make FCall return UINT32 * Move GetExceptionCount to Exception * more PR comments, fix x86 build * Remove global variable initialization
Diffstat (limited to 'src/vm/ecalllist.h')
-rw-r--r--src/vm/ecalllist.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vm/ecalllist.h b/src/vm/ecalllist.h
index bc801315f1..7e1dc6954b 100644
--- a/src/vm/ecalllist.h
+++ b/src/vm/ecalllist.h
@@ -177,6 +177,7 @@ FCFuncStart(gExceptionFuncs)
FCFuncElement("CopyDynamicMethods", ExceptionNative::CopyDynamicMethods)
FCFuncElement("GetStackTracesDeepCopy", ExceptionNative::GetStackTracesDeepCopy)
FCFuncElement("SaveStackTracesFromDeepCopy", ExceptionNative::SaveStackTracesFromDeepCopy)
+ FCFuncElement("GetExceptionCount", ExceptionNative::GetExceptionCount)
FCFuncEnd()
FCFuncStart(gCriticalHandleFuncs)