summaryrefslogtreecommitdiff
path: root/src/vm/gcheaputilities.cpp
diff options
context:
space:
mode:
authorAditya Mandaleeka <adityamandaleeka@users.noreply.github.com>2017-03-01 10:29:32 -0800
committerGitHub <noreply@github.com>2017-03-01 10:29:32 -0800
commit4a0a82a8dabaabb1e9a82af944d70aed210838a3 (patch)
tree87a28ccc2acbf122ab983286de12c1e829713c59 /src/vm/gcheaputilities.cpp
parent616519f957f13fbcb565ab408ccdf298c02f8ae6 (diff)
parent6b7fec4f171c4840d772ce3c608018474a9c24ae (diff)
downloadcoreclr-4a0a82a8dabaabb1e9a82af944d70aed210838a3.tar.gz
coreclr-4a0a82a8dabaabb1e9a82af944d70aed210838a3.tar.bz2
coreclr-4a0a82a8dabaabb1e9a82af944d70aed210838a3.zip
Merge pull request #9770 from adityamandaleeka/card_bundles_unix_2
Implement second-level card tables for non-Windows platforms
Diffstat (limited to 'src/vm/gcheaputilities.cpp')
-rw-r--r--src/vm/gcheaputilities.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vm/gcheaputilities.cpp b/src/vm/gcheaputilities.cpp
index f76e4bcb10..c34d07b30a 100644
--- a/src/vm/gcheaputilities.cpp
+++ b/src/vm/gcheaputilities.cpp
@@ -15,6 +15,10 @@ GPTR_IMPL_INIT(uint8_t, g_highest_address, nullptr);
uint8_t* g_ephemeral_low = (uint8_t*)1;
uint8_t* g_ephemeral_high = (uint8_t*)~0;
+#ifdef FEATURE_MANUALLY_MANAGED_CARD_BUNDLES
+uint32_t* g_card_bundle_table = nullptr;
+#endif
+
// This is the global GC heap, maintained by the VM.
GPTR_IMPL(IGCHeap, g_pGCHeap);