diff options
author | Joey Hess <joey@kitenet.net> | 2012-07-18 18:29:33 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-07-18 18:29:33 -0400 |
commit | f520a2c10359257ea6f920d26fe29831db8d07e3 (patch) | |
tree | b5fb0ac6aa400ac255aa544f4e4cae879bff74a6 | |
parent | f2ed3d6c8e0716d475d290eb34250eb310a2b940 (diff) |
add missing imports
-rw-r--r-- | Assistant/ThreadedMonad.hs | 1 | ||||
-rw-r--r-- | Assistant/Threads/TransferWatcher.hs | 1 | ||||
-rw-r--r-- | Utility/Parallel.hs | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/Assistant/ThreadedMonad.hs b/Assistant/ThreadedMonad.hs index 16f3a9dd9..f32adff43 100644 --- a/Assistant/ThreadedMonad.hs +++ b/Assistant/ThreadedMonad.hs @@ -13,6 +13,7 @@ import qualified Annex import Control.Concurrent import Data.Tuple import System.Posix.Types +import System.Posix.Process {- The Annex state is stored in a MVar, so that threaded actions can access - it. -} diff --git a/Assistant/Threads/TransferWatcher.hs b/Assistant/Threads/TransferWatcher.hs index 5be63fce4..766c1f89e 100644 --- a/Assistant/Threads/TransferWatcher.hs +++ b/Assistant/Threads/TransferWatcher.hs @@ -17,6 +17,7 @@ import Utility.Types.DirWatcher import Annex.BranchState import Data.Map as M +import System.Posix.Process {- This thread watches for changes to the gitAnnexTransferDir, - and updates the DaemonStatus's map of ongoing transfers. -} diff --git a/Utility/Parallel.hs b/Utility/Parallel.hs index 9df95ab2b..f4a79316c 100644 --- a/Utility/Parallel.hs +++ b/Utility/Parallel.hs @@ -9,6 +9,8 @@ module Utility.Parallel where import Common +import System.Posix.Process + {- Runs an action in parallel with a set of values. - Returns the values partitioned into ones with which the action succeeded, - and ones with which it failed. -} |