parallel-io 0.3.2.1 → 0.3.2.2
raw patch · 2 files changed
+3/−4 lines, 2 files
Files
Control/Concurrent/ParallelIO/Local.hs view
@@ -30,15 +30,14 @@ import Control.Concurrent import Control.Exception+import qualified Control.Exception as E import Control.Monad import System.IO -import Prelude hiding (catch) - reflectExceptionsTo :: ThreadId -> IO () -> IO ()-reflectExceptionsTo tid act = act `catch` \e -> throwTo tid (e :: SomeException)+reflectExceptionsTo tid act = act `E.catch` \e -> throwTo tid (e :: SomeException) -- | A thread pool, containing a maximum number of threads. The best way to
parallel-io.cabal view
@@ -1,5 +1,5 @@ Name: parallel-io-Version: 0.3.2.1+Version: 0.3.2.2 Cabal-Version: >= 1.2 Category: Concurrency Synopsis: Combinators for executing IO actions in parallel on a thread pool.