Skip to content

Commit 2067ba1

Browse files
authored
Merge pull request eclipse-omr#7212 from amicic/gcmaxthreads
Use gcThreadCountSpecified
2 parents 7a7426b + e4bf396 commit 2067ba1

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

gc/base/Configuration.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -447,8 +447,7 @@ MM_Configuration::initializeGCThreadCount(MM_EnvironmentBase* env)
447447
{
448448
MM_GCExtensionsBase* extensions = env->getExtensions();
449449

450-
/* to be checked against gcThreadCountSpecified, once downstream projects properly set it */
451-
if (!extensions->gcThreadCountForced) {
450+
if (!extensions->gcThreadCountSpecified) {
452451
extensions->gcThreadCount = defaultGCThreadCount(env);
453452
}
454453
}

gc/base/ParallelDispatcher.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,6 @@ MM_ParallelDispatcher::contractThreadPool(MM_EnvironmentBase *env, uintptr_t new
701701

702702
Assert_MM_true(_threadShutdownCount == expectedThreadShutdownThread);
703703

704-
_extensions->gcThreadCount = newThreadCount;
705704
_activeThreadCount = newThreadCount;
706705
_threadCount = newThreadCount;
707706
_threadCountMaximum = newThreadCount;
@@ -748,7 +747,6 @@ MM_ParallelDispatcher::expandThreadPool(MM_EnvironmentBase *env)
748747
newThreadCount = _threadShutdownCount + 1;
749748
}
750749

751-
_extensions->gcThreadCount = newThreadCount;
752750
_threadCount = newThreadCount;
753751
_threadCountMaximum = newThreadCount;
754752
}

0 commit comments

Comments
 (0)