summaryrefslogtreecommitdiff
path: root/src/gc/gcinterface.h
diff options
context:
space:
mode:
authorAditya Mandaleeka <adityam@microsoft.com>2017-02-24 10:23:43 -0800
committerAditya Mandaleeka <adityam@microsoft.com>2017-02-28 15:52:34 -0800
commit9ae6ed25affc42343a3f88f147ff4a5fbd1e9727 (patch)
tree82be1e88aba96e891af5169b68b99725b6c6ebf6 /src/gc/gcinterface.h
parent7bd38e8836611908298363688b7faac6eaf065ce (diff)
downloadcoreclr-9ae6ed25affc42343a3f88f147ff4a5fbd1e9727.tar.gz
coreclr-9ae6ed25affc42343a3f88f147ff4a5fbd1e9727.tar.bz2
coreclr-9ae6ed25affc42343a3f88f147ff4a5fbd1e9727.zip
Implement card bundles for non-Windows platforms.
Diffstat (limited to 'src/gc/gcinterface.h')
-rw-r--r--src/gc/gcinterface.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gc/gcinterface.h b/src/gc/gcinterface.h
index 99d79df633..d67e5610ab 100644
--- a/src/gc/gcinterface.h
+++ b/src/gc/gcinterface.h
@@ -77,6 +77,10 @@ struct WriteBarrierParameters
// card table. Used for WriteBarrierOp::Initialize and WriteBarrierOp::StompResize.
uint32_t* card_table;
+ // The new card bundle table location. May or may not be the same as the previous
+ // card bundle table. Used for WriteBarrierOp::Initialize and WriteBarrierOp::StompResize.
+ uint32_t* card_bundle_table;
+
// The heap's new low boundary. May or may not be the same as the previous
// value. Used for WriteBarrierOp::Initialize and WriteBarrierOp::StompResize.
uint8_t* lowest_address;