add missing imports

This commit is contained in:
Joey Hess 2012-07-18 18:29:33 -04:00
parent f2ed3d6c8e
commit f520a2c103
3 changed files with 4 additions and 0 deletions

View file

@ -13,6 +13,7 @@ import qualified Annex
import Control.Concurrent import Control.Concurrent
import Data.Tuple import Data.Tuple
import System.Posix.Types import System.Posix.Types
import System.Posix.Process
{- The Annex state is stored in a MVar, so that threaded actions can access {- The Annex state is stored in a MVar, so that threaded actions can access
- it. -} - it. -}

View file

@ -17,6 +17,7 @@ import Utility.Types.DirWatcher
import Annex.BranchState import Annex.BranchState
import Data.Map as M import Data.Map as M
import System.Posix.Process
{- This thread watches for changes to the gitAnnexTransferDir, {- This thread watches for changes to the gitAnnexTransferDir,
- and updates the DaemonStatus's map of ongoing transfers. -} - and updates the DaemonStatus's map of ongoing transfers. -}

View file

@ -9,6 +9,8 @@ module Utility.Parallel where
import Common import Common
import System.Posix.Process
{- Runs an action in parallel with a set of values. {- Runs an action in parallel with a set of values.
- Returns the values partitioned into ones with which the action succeeded, - Returns the values partitioned into ones with which the action succeeded,
- and ones with which it failed. -} - and ones with which it failed. -}