summaryrefslogtreecommitdiff
path: root/src/gc/gccommon.cpp
diff options
context:
space:
mode:
authorSean Gillespie <sean@swgillespie.me>2017-01-06 16:21:11 -0800
committerGitHub <noreply@github.com>2017-01-06 16:21:11 -0800
commitc10c1ff8e3237689212606c9aa5153beec8a1778 (patch)
tree53041ba883979389d5eb22b43ce33df4312d5a68 /src/gc/gccommon.cpp
parent548aec353e72117f875d6c08ffe52e2a43f01ad4 (diff)
downloadcoreclr-c10c1ff8e3237689212606c9aa5153beec8a1778.tar.gz
coreclr-c10c1ff8e3237689212606c9aa5153beec8a1778.tar.bz2
coreclr-c10c1ff8e3237689212606c9aa5153beec8a1778.zip
[Local GC] Move Software Write Watch's write barrier updates to GCToEEInterface::StompWriteBarrier (#8605)
* Move Software Write Watch's write barrier updates to use the new GCToEEInterface::StompWriteBarrier to stomp the EE's write barrier. * Address code review feedback, move SetCardsAfterBulkCopy to EE side of the interface
Diffstat (limited to 'src/gc/gccommon.cpp')
-rw-r--r--src/gc/gccommon.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gc/gccommon.cpp b/src/gc/gccommon.cpp
index d1ccddd205..0292705a16 100644
--- a/src/gc/gccommon.cpp
+++ b/src/gc/gccommon.cpp
@@ -41,8 +41,6 @@ uint8_t* g_shadow_lowest_address = NULL;
uint32_t* g_gc_card_table;
uint8_t* g_gc_lowest_address = 0;
uint8_t* g_gc_highest_address = 0;
-uint8_t* g_gc_ephemeral_low = (uint8_t*)1;
-uint8_t* g_gc_ephemeral_high = (uint8_t*)~0;
VOLATILE(int32_t) m_GCLock = -1;