[commit: packages/process] master: T11100: renamed functions (574846d)
git at git.haskell.org
git at git.haskell.org
Thu Apr 7 12:04:39 UTC 2016
Repository : ssh://git@git.haskell.org/process
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/574846def157fcbaba6d5d3ce1c40db23f9d23a1/process
>---------------------------------------------------------------
commit 574846def157fcbaba6d5d3ce1c40db23f9d23a1
Author: Tamar Christina <tamar at zhox.com>
Date: Tue Jan 26 08:28:57 2016 +0100
T11100: renamed functions
>---------------------------------------------------------------
574846def157fcbaba6d5d3ce1c40db23f9d23a1
System/Process.hsc | 2 +-
System/Process/Internals.hs | 10 +++++-----
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/System/Process.hsc b/System/Process.hsc
index 7d0219c..37d442f 100644
--- a/System/Process.hsc
+++ b/System/Process.hsc
@@ -57,7 +57,7 @@ module System.Process (
-- Interprocess communication
createPipe,
- createPipeFD,
+ createPipeFd,
-- * Old deprecated functions
-- | These functions pre-date 'createProcess' which is much more
diff --git a/System/Process/Internals.hs b/System/Process/Internals.hs
index 39a7395..c4d5be3 100644
--- a/System/Process/Internals.hs
+++ b/System/Process/Internals.hs
@@ -38,7 +38,7 @@ module System.Process.Internals (
withFilePathException, withCEnvironment,
translate,
createPipe,
- createPipeFD,
+ createPipeFd,
interruptProcessGroupOf,
) where
@@ -166,15 +166,15 @@ createPipe = createPipeInternal
{-# INLINE createPipe #-}
-- ---------------------------------------------------------------------------
--- createPipeFD
+-- createPipeFd
-- | Create a pipe for interprocess communication and return a
-- @(readEnd, writeEnd)@ `FD` pair.
--
-- @since 1.4.2.0
-createPipeFD :: IO (FD, FD)
-createPipeFD = createPipeInternalFd
-{-# INLINE createPipeFD #-}
+createPipeFd :: IO (FD, FD)
+createPipeFd = createPipeInternalFd
+{-# INLINE createPipeFd #-}
-- ----------------------------------------------------------------------------
More information about the ghc-commits
mailing list