summaryrefslogtreecommitdiff
path: root/Utility/Parallel.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-07-18 18:29:33 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-07-18 18:29:33 -0400
commitf520a2c10359257ea6f920d26fe29831db8d07e3 (patch)
treeb5fb0ac6aa400ac255aa544f4e4cae879bff74a6 /Utility/Parallel.hs
parentf2ed3d6c8e0716d475d290eb34250eb310a2b940 (diff)
add missing imports
Diffstat (limited to 'Utility/Parallel.hs')
-rw-r--r--Utility/Parallel.hs2
1 files changed, 2 insertions, 0 deletions
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. -}