summaryrefslogtreecommitdiff
path: root/src/vm/comutilnative.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/comutilnative.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/comutilnative.h')
-rw-r--r--src/vm/comutilnative.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vm/comutilnative.h b/src/vm/comutilnative.h
index 2b825b497a..e632acfb97 100644
--- a/src/vm/comutilnative.h
+++ b/src/vm/comutilnative.h
@@ -61,6 +61,7 @@ public:
// Note: these are on the PInvoke class to hide these from the user.
static FCDECL0(EXCEPTION_POINTERS*, GetExceptionPointers);
static FCDECL0(INT32, GetExceptionCode);
+ static FCDECL0(UINT32, GetExceptionCount);
};
class MemoryNative