summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-11-06 22:48:57 +1000
committerJason Zaugg <jzaugg@gmail.com>2014-11-06 22:48:57 +1000
commitc12a9b7bf8dc423783dd02eb0e4c477c86de96df (patch)
tree4a7f34cc8f67ed6e4a86f79cf4e0fbd6682fc317 /src
parent4059d76dd9240f365712a79ba086f70f2eb8be9b (diff)
parent9273c333b536e45d561dd9798e88545794459b7c (diff)
downloadscala-c12a9b7bf8dc423783dd02eb0e4c477c86de96df.tar.gz
scala-c12a9b7bf8dc423783dd02eb0e4c477c86de96df.tar.bz2
scala-c12a9b7bf8dc423783dd02eb0e4c477c86de96df.zip
Merge pull request #4090 from retronym/ticket/8955
SI-8955 Fix hanging fork-join pool via parallel collections
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/concurrent/impl/ExecutionContextImpl.scala12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/library/scala/concurrent/impl/ExecutionContextImpl.scala b/src/library/scala/concurrent/impl/ExecutionContextImpl.scala
index 32f30b9049..0c7f98ce5a 100644
--- a/src/library/scala/concurrent/impl/ExecutionContextImpl.scala
+++ b/src/library/scala/concurrent/impl/ExecutionContextImpl.scala
@@ -101,20 +101,26 @@ private[concurrent] object ExecutionContextImpl {
}
def range(floor: Int, desired: Int, ceiling: Int) = scala.math.min(scala.math.max(floor, desired), ceiling)
-
+ val numThreads = getInt("scala.concurrent.context.numThreads", "x1")
+ // The hard limit on the number of active threads that the thread factory will produce
+ // SI-8955 Deadlocks can happen if maxNoOfThreads is too low, although we're currently not sure
+ // about what the exact threshhold is. numThreads + 256 is conservatively high.
val maxNoOfThreads = getInt("scala.concurrent.context.maxThreads", "x1")
val desiredParallelism = range(
getInt("scala.concurrent.context.minThreads", "1"),
- getInt("scala.concurrent.context.numThreads", "x1"),
+ numThreads,
maxNoOfThreads)
+ // The thread factory must provide additional threads to support managed blocking.
+ val maxExtraThreads = getInt("scala.concurrent.context.maxExtraThreads", "256")
+
val uncaughtExceptionHandler: Thread.UncaughtExceptionHandler = new Thread.UncaughtExceptionHandler {
override def uncaughtException(thread: Thread, cause: Throwable): Unit = reporter(cause)
}
val threadFactory = new ExecutionContextImpl.DefaultThreadFactory(daemonic = true,
- maxThreads = maxNoOfThreads,
+ maxThreads = maxNoOfThreads + maxExtraThreads,
prefix = "scala-execution-context-global",
uncaught = uncaughtExceptionHandler)