summaryrefslogtreecommitdiff
path: root/src/vm/stublink.h
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2016-03-31 00:44:55 -0700
committerJan Kotas <jkotas@microsoft.com>2016-03-31 00:44:55 -0700
commitd3502c29c511292d0c6046b1aafe87295d2372d9 (patch)
tree92a8862dfa8f94137662dd16aae5d1a7b2859f72 /src/vm/stublink.h
parent0cce34c8976fd887bee0cf877c36b9abfa555635 (diff)
parentc4378e7f0773577e9924ff4ebad0cc3af43fb3a8 (diff)
downloadcoreclr-d3502c29c511292d0c6046b1aafe87295d2372d9.tar.gz
coreclr-d3502c29c511292d0c6046b1aafe87295d2372d9.tar.bz2
coreclr-d3502c29c511292d0c6046b1aafe87295d2372d9.zip
Merge pull request #4021 from dotnet-bot/from-tfs
Merge changes from TFS
Diffstat (limited to 'src/vm/stublink.h')
-rw-r--r--src/vm/stublink.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vm/stublink.h b/src/vm/stublink.h
index 8df3499b68..d7f0034587 100644
--- a/src/vm/stublink.h
+++ b/src/vm/stublink.h
@@ -349,7 +349,7 @@ protected:
{
if (m_nUnwindSlots == 0) return 0;
- return sizeof(RUNTIME_FUNCTION) + offsetof(UNWIND_INFO, UnwindCode) + m_nUnwindSlots * sizeof(UNWIND_CODE);
+ return sizeof(T_RUNTIME_FUNCTION) + offsetof(UNWIND_INFO, UnwindCode) + m_nUnwindSlots * sizeof(UNWIND_CODE);
}
#endif // _TARGET_AMD64_
@@ -359,7 +359,7 @@ protected:
// epilog.
private:
// Reserve fixed size block that's big enough to fit any unwind info we can have
- static const int c_nUnwindInfoSize = sizeof(RUNTIME_FUNCTION) + sizeof(DWORD) + MAX_UNWIND_CODE_WORDS *4;
+ static const int c_nUnwindInfoSize = sizeof(T_RUNTIME_FUNCTION) + sizeof(DWORD) + MAX_UNWIND_CODE_WORDS *4;
//
// Returns total UnwindInfoSize, including RUNTIME_FUNCTION entry
@@ -377,7 +377,7 @@ private:
private:
// Reserve fixed size block that's big enough to fit any unwind info we can have
- static const int c_nUnwindInfoSize = sizeof(RUNTIME_FUNCTION) + sizeof(DWORD) + MAX_UNWIND_CODE_WORDS *4;
+ static const int c_nUnwindInfoSize = sizeof(T_RUNTIME_FUNCTION) + sizeof(DWORD) + MAX_UNWIND_CODE_WORDS *4;
UINT UnwindInfoSize(UINT codeSize)
{
if (!m_fProlog) return 0;