summaryrefslogtreecommitdiff
path: root/src/gc/handletablecore.cpp
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-11-19 17:01:53 -0800
committerJan Kotas <jkotas@microsoft.com>2015-11-19 20:56:11 -0800
commit94deb4236a2c007319baa78a5bf3a5b1d50f980b (patch)
tree30ebdf3104fa0c8dd2e634986b8fdbd377825d0a /src/gc/handletablecore.cpp
parent227abcd8ca79fa0b0b5d4238e11c99a419f3f510 (diff)
downloadcoreclr-94deb4236a2c007319baa78a5bf3a5b1d50f980b.tar.gz
coreclr-94deb4236a2c007319baa78a5bf3a5b1d50f980b.tar.bz2
coreclr-94deb4236a2c007319baa78a5bf3a5b1d50f980b.zip
Update GC from CoreRT
https://github.com/dotnet/corert/tree/master/src/Native/gc c03d823a11f54e734e340813e6cd1e543ca448ef
Diffstat (limited to 'src/gc/handletablecore.cpp')
-rw-r--r--src/gc/handletablecore.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gc/handletablecore.cpp b/src/gc/handletablecore.cpp
index 6384531bdb..8435f94165 100644
--- a/src/gc/handletablecore.cpp
+++ b/src/gc/handletablecore.cpp
@@ -203,6 +203,8 @@ void ZeroHandles(OBJECTHANDLE *pHandleBase, uint32_t uCount)
void CALLBACK DbgCountEnumeratedBlocks(TableSegment *pSegment, uint32_t uBlock, uint32_t uCount, ScanCallbackInfo *pInfo)
{
LIMITED_METHOD_CONTRACT;
+ UNREFERENCED_PARAMETER(pSegment);
+ UNREFERENCED_PARAMETER(uBlock);
// accumulate the block count in pInfo->param1
pInfo->param1 += uCount;
@@ -1878,6 +1880,7 @@ uint32_t BlockAllocHandlesInMask(TableSegment *pSegment, uint32_t uBlock,
OBJECTHANDLE *pHandleBase, uint32_t uCount)
{
LIMITED_METHOD_CONTRACT;
+ UNREFERENCED_PARAMETER(uBlock);
// keep track of how many handles we have left to allocate
uint32_t uRemain = uCount;
@@ -1953,6 +1956,7 @@ uint32_t BlockAllocHandlesInitial(TableSegment *pSegment, uint32_t uType, uint32
OBJECTHANDLE *pHandleBase, uint32_t uCount)
{
LIMITED_METHOD_CONTRACT;
+ UNREFERENCED_PARAMETER(uType);
// sanity check
_ASSERTE(uCount);