Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/coreclr/inc/CrstTypes.def
Original file line number Diff line number Diff line change
Expand Up @@ -392,8 +392,13 @@ Crst SingleUseLock
AcquiredBefore LoaderHeap UniqueStack DebuggerJitInfo
End

Crst UnwindInfoTableLock
Crst UnwindInfoTablePublishLock
AcquiredAfter SingleUseLock
AcquiredBefore UnwindInfoTablePendingLock
End

Crst UnwindInfoTablePendingLock
AcquiredAfter UnwindInfoTablePublishLock
AcquiredBefore StressLog
End

Expand Down
15 changes: 9 additions & 6 deletions src/coreclr/inc/crsttypes_generated.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,11 @@ enum CrstType
CrstUMEntryThunkFreeListLock = 98,
CrstUniqueStack = 99,
CrstUnresolvedClassLock = 100,
CrstUnwindInfoTableLock = 101,
CrstVSDIndirectionCellLock = 102,
CrstWrapperTemplate = 103,
kNumberOfCrstTypes = 104
CrstUnwindInfoTablePendingLock = 101,
CrstUnwindInfoTablePublishLock = 102,
CrstVSDIndirectionCellLock = 103,
CrstWrapperTemplate = 104,
kNumberOfCrstTypes = 105
};

#endif // __CRST_TYPES_INCLUDED
Expand Down Expand Up @@ -231,7 +232,8 @@ int g_rgCrstLevelMap[] =
2, // CrstUMEntryThunkFreeListLock
3, // CrstUniqueStack
6, // CrstUnresolvedClassLock
2, // CrstUnwindInfoTableLock
2, // CrstUnwindInfoTablePendingLock
3, // CrstUnwindInfoTablePublishLock
3, // CrstVSDIndirectionCellLock
2, // CrstWrapperTemplate
};
Expand Down Expand Up @@ -340,7 +342,8 @@ LPCSTR g_rgCrstNameMap[] =
"CrstUMEntryThunkFreeListLock",
"CrstUniqueStack",
"CrstUnresolvedClassLock",
"CrstUnwindInfoTableLock",
"CrstUnwindInfoTablePendingLock",
"CrstUnwindInfoTablePublishLock",
"CrstVSDIndirectionCellLock",
"CrstWrapperTemplate",
};
Expand Down
Loading
Loading