diff options
Diffstat (limited to 'Types')
-rw-r--r-- | Types/LockCache.hs (renamed from Types/LockPool.hs) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Types/LockPool.hs b/Types/LockCache.hs index 803822042..c1f394cf0 100644 --- a/Types/LockPool.hs +++ b/Types/LockCache.hs @@ -1,16 +1,16 @@ -{- git-annex lock pool data types +{- git-annex lock cache data types - - Copyright 2014 Joey Hess <id@joeyh.name> - - Licensed under the GNU GPL version 3 or higher. -} -module Types.LockPool ( - LockPool, +module Types.LockCache ( + LockCache, LockHandle ) where import qualified Data.Map as M -import Utility.LockFile +import Utility.LockPool -type LockPool = M.Map FilePath LockHandle +type LockCache = M.Map FilePath LockHandle |