Name: parallel-io Version: 0.3.2 Cabal-Version: >= 1.2 Category: Concurrency Synopsis: Combinators for executing IO actions in parallel on a thread pool. Description: This package provides combinators for sequencing IO actions onto a thread pool. The thread pool is guaranteed to contain no more unblocked threads than a user-specified upper limit, thus minimizing contention. . Furthermore, the parallel combinators can be used reentrantly - your parallel actions can spawn more parallel actions - without violating this property of the thread pool. . The package is inspired by the thread . Thanks to Neil Mitchell and Bulat Ziganshin for some of the code this package is based on. License: BSD3 License-File: LICENSE Homepage: http://batterseapower.github.com/parallel-io Author: Max Bolingbroke , Neil Mitchell , Bulat Ziganshin Maintainer: Max Bolingbroke Build-Type: Simple Flag Benchmark Description: Build the benchmarking tool Default: False Flag Fuzz Description: Build the fuzzing tool for discovering deadlocks Default: False Flag Tests Description: Build the test runner Default: False Library Exposed-Modules: Control.Concurrent.ParallelIO Control.Concurrent.ParallelIO.Global Control.Concurrent.ParallelIO.Local Other-Modules: Control.Concurrent.ParallelIO.Compat Build-Depends: base >= 4 && < 5, extensible-exceptions > 0.1.0.1, containers >= 0.2 && < 0.5, random >= 1.0 && < 1.1 Executable benchmark Main-Is: Control/Concurrent/ParallelIO/Benchmark.hs if !flag(benchmark) Buildable: False else Build-Depends: base >= 4 && < 5, extensible-exceptions > 0.1.0.1, containers >= 0.2 && < 0.5, random >= 1.0 && < 1.1, time >= 1 Ghc-Options: -threaded Executable tests Main-Is: Control/Concurrent/ParallelIO/Tests.hs if !flag(tests) Buildable: False else Build-Depends: base >= 4 && < 5, extensible-exceptions > 0.1.0.1, containers >= 0.2 && < 0.5, random >= 1.0 && < 1.1, test-framework >= 0.1.1, test-framework-hunit >= 0.1.1, HUnit >= 1.2 && < 2 Ghc-Options: -threaded -rtsopts Executable fuzz Main-Is: Control/Concurrent/ParallelIO/Fuzz.hs if !flag(fuzz) Buildable: False else Build-Depends: base >= 4 && < 5, extensible-exceptions > 0.1.0.1, containers >= 0.2 && < 0.5, random >= 1.0 && < 1.1 Ghc-Options: -threaded -rtsopts Executable fuzz-seq Main-Is: Control/Concurrent/ParallelIO/Fuzz.hs if !flag(fuzz) Buildable: False else Build-Depends: base >= 4 && < 5, extensible-exceptions > 0.1.0.1, containers >= 0.2 && < 0.5, random >= 1.0 && < 1.1