summaryrefslogtreecommitdiff
path: root/test/files/scalacheck/parallel-collections/ParallelHashMapCheck.scala
Commit message (Collapse)AuthorAgeFilesLines
* Begone t1737...Hubert Plociniczak2011-11-021-13/+13
|
* Array combiners implementation changed from arr...Aleksandar Pokopec2010-12-091-17/+17
| | | | | | | | | Array combiners implementation changed from array buffers to doubling unrolled buffers to avoid excessive copying. Still evaluating the benefits of this. No review.
* Fixing jvm 1.5 support for parallel collections.Aleksandar Pokopec2010-12-091-3/+3
| | | | | | | | | | | | | | | | | | Special cased with thread pool executor scheduling. Fixed an ugly concurrency bug where futures returned by a thread pool executor didn't remove the task from the queue when cancel was called. Note to self and others: don't cancel futures returned by thread pool executors, it might lead to unexpected behaviour. Modified the executor to add new threads if all the active threads are syncing, in order to avoid deadlocks. Fixed a hidden bug in AdaptiveWorkStealingTasks, where correct behaviour depended on the execution order of the tasks. This didn't fail before with ForkJoinTasks, since there the execution order is well-defined. Scalachecked 1.5 & 1.6 support. No review.
* Debugging parallel hash tables.Aleksandar Pokopec2010-10-281-1/+23
| | | | | No review.
* Mostly refactored existing test functionality f...Aleksandar Pokopec2010-10-281-6/+6
| | | | | | | | Mostly refactored existing test functionality for parallel collections. Added immutable hash set tests. No review.
* Some serious hash tries bugs fixed.Aleksandar Pokopec2010-10-201-1/+10
| | | | | | | Plus one wild goose chase and test fixes. No review.
* Some exception handling fixes in parallel colle...Aleksandar Pokopec2010-10-201-0/+66
Some exception handling fixes in parallel collections. Fixed some regressions. Fixed some tests. No review.