summaryrefslogtreecommitdiff
path: root/src/gc/gccommon.cpp
diff options
context:
space:
mode:
authorSean Gillespie <segilles@microsoft.com>2017-07-20 21:53:46 -0700
committerGitHub <noreply@github.com>2017-07-20 21:53:46 -0700
commit0372174871c1e27f483c9877c2c5181720be8722 (patch)
tree16cbb72c8c7b95c9fff92e4e1fec329ae431a2e2 /src/gc/gccommon.cpp
parentfa3d1cdd5583d5b278dd1a9c246ff30ca6966973 (diff)
downloadcoreclr-0372174871c1e27f483c9877c2c5181720be8722.tar.gz
coreclr-0372174871c1e27f483c9877c2c5181720be8722.tar.bz2
coreclr-0372174871c1e27f483c9877c2c5181720be8722.zip
[Local GC] Refactor usage of GC-internal functions in the DAC (#12458)
* Refactor usage of GC-internal functions in the DAC * Fix one debugger test failure, one to go
Diffstat (limited to 'src/gc/gccommon.cpp')
-rw-r--r--src/gc/gccommon.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gc/gccommon.cpp b/src/gc/gccommon.cpp
index 3e45eb60d5..92c0e7b7b5 100644
--- a/src/gc/gccommon.cpp
+++ b/src/gc/gccommon.cpp
@@ -124,6 +124,8 @@ namespace SVR
extern void PopulateDacVars(GcDacVars* dacVars);
}
+extern void PopulateHandleTableDacVars(GcDacVars* dacVars);
+
//------------------------------------------------------------------
// Externally-facing GC symbols, used to initialize the GC
// -----------------------------------------------------------------
@@ -203,6 +205,7 @@ InitializeGarbageCollector(
WKS::PopulateDacVars(gcDacVars);
#endif
+ PopulateHandleTableDacVars(gcDacVars);
if (heap == nullptr)
{
return false;