summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2016-02-05 16:11:01 +0100
committerBen Gamari <ben@smart-cactus.org>2016-02-05 16:35:19 +0100
commit70980b115e33e32b9730825aeebf20fae1859101 (patch)
tree507bc1c02a0de8fb5a9f96c8efe05bd167f7b1e2 /compiler
parent91a56e9de1e4e0487af7b3610531b81a74205959 (diff)
downloadhaskell-70980b115e33e32b9730825aeebf20fae1859101.tar.gz
GHCi: Fix Windows build (again)
GHC.Conc exports Shutdown
Diffstat (limited to 'compiler')
-rw-r--r--compiler/ghci/GHCi.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ghci/GHCi.hs b/compiler/ghci/GHCi.hs
index 80aeccf505..7097e665ce 100644
--- a/compiler/ghci/GHCi.hs
+++ b/compiler/ghci/GHCi.hs
@@ -81,7 +81,7 @@ import GHC.IO.Handle.FD (fdToHandle)
import System.Posix as Posix
#endif
import System.Process
-import GHC.Conc
+import GHC.Conc (getNumProcessors, pseq, par)
{- Note [Remote GHCi]