Repository : ssh://darcs.haskell.org//srv/darcs/packages/process On branch : master
http://hackage.haskell.org/trac/ghc/changeset/3534c0eb2b446166158184e79fac43a730776582 >--------------------------------------------------------------- commit 3534c0eb2b446166158184e79fac43a730776582 Author: Ian Lynagh <[email protected]> Date: Fri Oct 21 00:52:32 2011 +0100 Follow change to FFI decls: Import constructors of newtypes >--------------------------------------------------------------- System/Process.hs | 1 + System/Process/Internals.hs | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/System/Process.hs b/System/Process.hs index 6ae1ac5..1b50100 100644 --- a/System/Process.hs +++ b/System/Process.hs @@ -71,6 +71,7 @@ import Prelude hiding (mapM) import System.Process.Internals import System.IO.Error +import System.Posix.Types as Z import qualified Control.Exception as C import Control.Concurrent import Control.Monad diff --git a/System/Process/Internals.hs b/System/Process/Internals.hs index babadc1..c805ad0 100644 --- a/System/Process/Internals.hs +++ b/System/Process/Internals.hs @@ -47,7 +47,7 @@ module System.Process.Internals ( #ifndef __HUGS__ #if !defined(mingw32_HOST_OS) && !defined(__MINGW32__) -import System.Posix.Types ( CPid ) +import System.Posix.Types import System.Posix.Process.Internals ( pPrPr_disableITimers, c_execvpe ) import System.IO ( IOMode(..) ) #else _______________________________________________ Cvs-libraries mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-libraries
