resource-pool 0.2.1.0 → 0.2.1.1
raw patch · 2 files changed
+5/−5 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Data/Pool.hs +4/−4
- resource-pool.cabal +1/−1
Data/Pool.hs view
@@ -40,13 +40,13 @@ import Control.Applicative ((<$>)) import Control.Concurrent (forkIO, killThread, myThreadId, threadDelay) import Control.Concurrent.STM-import Control.Exception (SomeException, catch, onException)+import Control.Exception (SomeException, onException) import Control.Monad (forM_, forever, join, liftM2, unless, when) import Data.Hashable (hash) import Data.List (partition) import Data.Time.Clock (NominalDiffTime, UTCTime, diffUTCTime, getCurrentTime)-import Prelude hiding (catch) import System.Mem.Weak (addFinalizer)+import qualified Control.Exception as E import qualified Data.Vector as V #if MIN_VERSION_monad_control(0,3,0)@@ -171,7 +171,7 @@ modifyTVar_ inUse (subtract (length stale)) return (map entry stale) forM_ resources $ \resource -> do- destroy resource `catch` \(_::SomeException) -> return ()+ destroy resource `E.catch` \(_::SomeException) -> return () -- | Temporarily take a resource from a 'Pool', perform an action with -- it, and return it to the pool afterwards.@@ -240,7 +240,7 @@ -- destroy function. destroyResource :: Pool a -> LocalPool a -> a -> IO () destroyResource Pool{..} LocalPool{..} resource = do- destroy resource `catch` \(_::SomeException) -> return ()+ destroy resource `E.catch` \(_::SomeException) -> return () atomically (modifyTVar_ inUse (subtract 1)) #if __GLASGOW_HASKELL__ >= 700 {-# INLINABLE destroyResource #-}
resource-pool.cabal view
@@ -1,5 +1,5 @@ name: resource-pool-version: 0.2.1.0+version: 0.2.1.1 synopsis: A high-performance striped resource pooling implementation description: A high-performance striped pooling abstraction for managing