summaryrefslogtreecommitdiff
path: root/src/gc/sample
diff options
context:
space:
mode:
authorDavid Mason <davmason@microsoft.com>2018-08-31 03:43:51 -0700
committerGitHub <noreply@github.com>2018-08-31 03:43:51 -0700
commit00a5ee589b565ebcd068c5851315a997848ed98c (patch)
treefab254e167e13c1495642f97f940d99ede11077d /src/gc/sample
parent6e780ac7dae161bdfd2d561db7995687703d39b2 (diff)
downloadcoreclr-00a5ee589b565ebcd068c5851315a997848ed98c.tar.gz
coreclr-00a5ee589b565ebcd068c5851315a997848ed98c.tar.bz2
coreclr-00a5ee589b565ebcd068c5851315a997848ed98c.zip
[local gc] move DacNotifyGCMarkEnd and AnalyzeSurvivorsRequested to GCToEEInterface (#19774)
Diffstat (limited to 'src/gc/sample')
-rw-r--r--src/gc/sample/gcenv.ee.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/gc/sample/gcenv.ee.cpp b/src/gc/sample/gcenv.ee.cpp
index a705ae2484..3e9ed3bb23 100644
--- a/src/gc/sample/gcenv.ee.cpp
+++ b/src/gc/sample/gcenv.ee.cpp
@@ -371,3 +371,13 @@ bool GCToEEInterface::AppDomainIsRudeUnload(void *appDomain)
{
return false;
}
+
+inline bool GCToEEInterface::AnalyzeSurvivorsRequested(int condemnedGeneration)
+{
+ return false;
+}
+
+inline void GCToEEInterface::AnalyzeSurvivorsFinished(int condemnedGeneration)
+{
+
+}