summaryrefslogtreecommitdiff
path: root/src/gc/sample/gcenv.ee.cpp
diff options
context:
space:
mode:
authorSean Gillespie <sean.william.g@gmail.com>2016-09-26 14:23:52 -0700
committerGitHub <noreply@github.com>2016-09-26 14:23:52 -0700
commit907f9ff11cdfdd2fa6f080708f59d874c1a9e03f (patch)
tree1253e7b88f0003b80858f595d259b15b689c4d1a /src/gc/sample/gcenv.ee.cpp
parent712cdd405e9aac7fc6806814a2fddd976e84d9df (diff)
downloadcoreclr-907f9ff11cdfdd2fa6f080708f59d874c1a9e03f.tar.gz
coreclr-907f9ff11cdfdd2fa6f080708f59d874c1a9e03f.tar.bz2
coreclr-907f9ff11cdfdd2fa6f080708f59d874c1a9e03f.zip
Introduce "IGCToCLR" and use it within the GC to interface with the EE (#7295)
* Introduce a feature define FEATURE_STANDALONE_GC that allows the GC to communicate with the EE through a virtual interface. * Split GCToEEInterface definition out of gc.h into its own header * Address code review feedback * Address code review feedback
Diffstat (limited to 'src/gc/sample/gcenv.ee.cpp')
-rw-r--r--src/gc/sample/gcenv.ee.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gc/sample/gcenv.ee.cpp b/src/gc/sample/gcenv.ee.cpp
index 691004d988..25d829e79e 100644
--- a/src/gc/sample/gcenv.ee.cpp
+++ b/src/gc/sample/gcenv.ee.cpp
@@ -129,7 +129,7 @@ void ThreadStore::AttachCurrentThread()
g_pThreadList = pThread;
}
-void GCToEEInterface::SuspendEE(GCToEEInterface::SUSPEND_REASON reason)
+void GCToEEInterface::SuspendEE(SUSPEND_REASON reason)
{
g_theGCHeap->SetGCInProgress(TRUE);