summaryrefslogtreecommitdiff
path: root/src/vm/win32threadpool.cpp
diff options
context:
space:
mode:
authorMaoni0 <@>2016-05-03 18:29:46 -0700
committerMaoni0 <maonis@microsoft.com>2016-05-06 11:52:41 -0700
commit73dfed727374982f0ce8804d82d9ca993a4b8bf1 (patch)
tree3f9b7ae54a17bb2020229a622f0e8bb07da37eb3 /src/vm/win32threadpool.cpp
parent92f671fe9f0fc583805d4f9c3116126444dabcf4 (diff)
downloadcoreclr-73dfed727374982f0ce8804d82d9ca993a4b8bf1.tar.gz
coreclr-73dfed727374982f0ce8804d82d9ca993a4b8bf1.tar.bz2
coreclr-73dfed727374982f0ce8804d82d9ca993a4b8bf1.zip
enable affinity and numa for GC and some bug fixes
double the threshold for balancing onto a remote NUMA node - this was proven to be best with the asp.net benchmark. enable cpu group
Diffstat (limited to 'src/vm/win32threadpool.cpp')
-rw-r--r--src/vm/win32threadpool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/win32threadpool.cpp b/src/vm/win32threadpool.cpp
index 0fa06db559..35c2b64ac4 100644
--- a/src/vm/win32threadpool.cpp
+++ b/src/vm/win32threadpool.cpp
@@ -4328,7 +4328,7 @@ int ThreadpoolMgr::GetCPUBusyTime_NT(PROCESS_CPU_INFORMATION* pOldInfo)
if (CPUGroupInfo::CanEnableGCCPUGroups() && CPUGroupInfo::CanEnableThreadUseAllCpuGroups())
{
-#if !defined(FEATURE_CORECLR)
+#if !defined(FEATURE_REDHAWK) && !defined(FEATURE_PAL)
FILETIME newIdleTime, newKernelTime, newUserTime;
CPUGroupInfo::GetSystemTimes(&newIdleTime, &newKernelTime, &newUserTime);