summaryrefslogtreecommitdiff
path: root/src/gc/gcenv.ee.standalone.inl
diff options
context:
space:
mode:
authorMaoni Stephens <Maoni0@users.noreply.github.com>2018-12-26 13:13:21 -0800
committerGitHub <noreply@github.com>2018-12-26 13:13:21 -0800
commitaa13ca95d633e9251fa040533d3d5650808455c0 (patch)
tree87e76cd95fdff758227e97ffb66a48f97c4550fb /src/gc/gcenv.ee.standalone.inl
parent56e725e892cb67a373ac3e2121b9d667b6a40c03 (diff)
downloadcoreclr-aa13ca95d633e9251fa040533d3d5650808455c0.tar.gz
coreclr-aa13ca95d633e9251fa040533d3d5650808455c0.tar.bz2
coreclr-aa13ca95d633e9251fa040533d3d5650808455c0.zip
desktop port (#21523)
+alloc lock split into SOH and LOH +provisional mode to fix too many gen2 GCs triggered in low mem situation when the heap has heavy pinning fragmentation +better free list usage +premature OOM fixes +3 new configs: GCHeapAffinitizeMask, GCHighMemPercent, GCLOHThreshold (will be documented) YieldProcessor scaling factor is different on core due to the different implementation on core.
Diffstat (limited to 'src/gc/gcenv.ee.standalone.inl')
-rw-r--r--src/gc/gcenv.ee.standalone.inl6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gc/gcenv.ee.standalone.inl b/src/gc/gcenv.ee.standalone.inl
index 52c91edde3..b000dadcbc 100644
--- a/src/gc/gcenv.ee.standalone.inl
+++ b/src/gc/gcenv.ee.standalone.inl
@@ -317,4 +317,10 @@ inline void GCToEEInterface::AnalyzeSurvivorsFinished(int condemnedGeneration)
g_theGCToCLR->AnalyzeSurvivorsFinished(condemnedGeneration);
}
+inline void GCToEEInterface::VerifySyncTableEntry()
+{
+ assert(g_theGCToCLR != nullptr);
+ g_theGCToCLR->VerifySyncTableEntry();
+}
+
#endif // __GCTOENV_EE_STANDALONE_INL__