summaryrefslogtreecommitdiff
path: root/src/utilcode
diff options
context:
space:
mode:
authorDavid Mason <davmason@microsoft.com>2018-08-25 12:24:35 -0700
committerGitHub <noreply@github.com>2018-08-25 12:24:35 -0700
commita1404cafbe1cd15a5c0cfbd4995ad97694b708bd (patch)
tree33728689499c098f0c4eef47cb22ef4efbc38721 /src/utilcode
parent3fca50a36e62a7433d7601d805d38de6baee7951 (diff)
downloadcoreclr-a1404cafbe1cd15a5c0cfbd4995ad97694b708bd.tar.gz
coreclr-a1404cafbe1cd15a5c0cfbd4995ad97694b708bd.tar.bz2
coreclr-a1404cafbe1cd15a5c0cfbd4995ad97694b708bd.zip
Remove NumaNodeInfo, CPUGroupInfo, AppDomain, SystemDomain, and EEConfig stubs from local gc (#19500)
* Switch NumaNodeInfo and CPUGroupInfo to the interface * Remove AppDomain/SystemDomain stubs * remove EEConfig methods * Port numa code to the coreclr side * add numa back to PAL and standalone builds * enable numa for PAL/Standalone builds, and fix BOOL warnings * remove unused defines, and fix linux build errors * building on windows * about to delete numa work from unix and want a backup * add stubs for unix numa/cpugroup * Code review feedback * Code review feedback
Diffstat (limited to 'src/utilcode')
-rw-r--r--src/utilcode/util.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utilcode/util.cpp b/src/utilcode/util.cpp
index d1dfac3e67..6a48e0c4b8 100644
--- a/src/utilcode/util.cpp
+++ b/src/utilcode/util.cpp
@@ -748,7 +748,7 @@ BYTE * ClrVirtualAllocWithinRange(const BYTE *pMinAddr,
/*static*/ NumaNodeInfo::PVAExN NumaNodeInfo::m_pVirtualAllocExNuma = NULL;
/*static*/ LPVOID NumaNodeInfo::VirtualAllocExNuma(HANDLE hProc, LPVOID lpAddr, SIZE_T dwSize,
- DWORD allocType, DWORD prot, DWORD node)
+ DWORD allocType, DWORD prot, DWORD node)
{
return (*m_pVirtualAllocExNuma)(hProc, lpAddr, dwSize, allocType, prot, node);
}
@@ -766,7 +766,7 @@ BYTE * ClrVirtualAllocWithinRange(const BYTE *pMinAddr,
#if !defined(FEATURE_REDHAWK)
//check for numa support if multiple heaps are used
ULONG highest = 0;
-
+
if (CLRConfig::GetConfigValue(CLRConfig::UNSUPPORTED_GCNumaAware) == 0)
return FALSE;