Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Gillespie <sean.william.g@gmail.com>2016-10-18 05:14:10 +0300
committerGitHub <noreply@github.com>2016-10-18 05:14:10 +0300
commit202751da1ff45f4d5401249f36b0fc2e582e2b53 (patch)
treec91fab5a3575f492f02f274216c800cc18610dcc /src/Native/Runtime/gcrhscan.cpp
parentc68ab452551fcf3882cea94e466e77cd4a13eba3 (diff)
Port dotnet/coreclr#7295 to CoreRT, introducing an interface (#2038)
"IGCToCLR" that is used to form the contract between the EE and the GC.
Diffstat (limited to 'src/Native/Runtime/gcrhscan.cpp')
-rw-r--r--src/Native/Runtime/gcrhscan.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Native/Runtime/gcrhscan.cpp b/src/Native/Runtime/gcrhscan.cpp
index 0e40c3c85..ecb3e2bd3 100644
--- a/src/Native/Runtime/gcrhscan.cpp
+++ b/src/Native/Runtime/gcrhscan.cpp
@@ -4,10 +4,15 @@
#include "common.h"
#include "gcenv.h"
-#include "gcscan.h"
#include "gcheaputilities.h"
#include "objecthandle.h"
+#ifdef FEATURE_STANDALONE_GC
+#include "gcenv.ee.h"
+#else
+#include "../gc/env/gcenv.ee.h"
+#endif // FEATURE_STANDALONE_GC
+
#include "PalRedhawkCommon.h"
#include "gcrhinterface.h"