summaryrefslogtreecommitdiff
path: root/src/gc/sample/gcenv.ee.cpp
diff options
context:
space:
mode:
authorSean Gillespie <sean@swgillespie.me>2017-04-05 14:40:42 -0700
committerGitHub <noreply@github.com>2017-04-05 14:40:42 -0700
commit7ba3cc8174dec2626a403f5ccd35c79a3bf6cf77 (patch)
treef042dd1e076b0dd82970d75502855001d37450dd /src/gc/sample/gcenv.ee.cpp
parentbbf13d7e5e0764770cc0d55d727beb73a05d55f6 (diff)
downloadcoreclr-7ba3cc8174dec2626a403f5ccd35c79a3bf6cf77.tar.gz
coreclr-7ba3cc8174dec2626a403f5ccd35c79a3bf6cf77.tar.bz2
coreclr-7ba3cc8174dec2626a403f5ccd35c79a3bf6cf77.zip
[Local GC] Pull some logic using SystemDomain::System out of the GC (#10670)
* [Local GC] Pull some logic using SystemDomain::System out of the GC * Address code review feedback: add comment about this (per the GitHub discussion) and rename API to ForceFullGCToBeBlocking
Diffstat (limited to 'src/gc/sample/gcenv.ee.cpp')
-rw-r--r--src/gc/sample/gcenv.ee.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gc/sample/gcenv.ee.cpp b/src/gc/sample/gcenv.ee.cpp
index 392bfa1cb5..0f7dca1d98 100644
--- a/src/gc/sample/gcenv.ee.cpp
+++ b/src/gc/sample/gcenv.ee.cpp
@@ -275,6 +275,11 @@ bool GCToEEInterface::ShouldFinalizeObjectForUnload(AppDomain* pDomain, Object*
return true;
}
+bool GCToEEInterface::ForceFullGCToBeBlocking()
+{
+ return false;
+}
+
bool GCToEEInterface::EagerFinalized(Object* obj)
{
// The sample does not finalize anything eagerly.