Skip to content

Commit 10a0db2

Browse files
committed
Slight documentation cleanup
1 parent 8321c6d commit 10a0db2

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

System/Process/Internals.hs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -463,9 +463,10 @@ createProcess_ fun CreateProcess{ cmdspec = cmdsp,
463463
runInteractiveProcess_lock :: MVar ()
464464
runInteractiveProcess_lock = unsafePerformIO $ newMVar ()
465465

466-
-- Following functions are always exported in export list.
467-
-- It should be a no-op function on Windows.
468-
-- see the <https://github.com/haskell/process/pull/21>
466+
-- The following functions are always present in the export list. For
467+
-- compatibility with the non-Windows code, we provide the same functions with
468+
-- matching type signatures, but implemented as no-ops. For details, see:
469+
-- <https://github.com/haskell/process/pull/21>
469470
startDelegateControlC :: IO ()
470471
startDelegateControlC = return ()
471472

@@ -475,6 +476,8 @@ endDelegateControlC _ = return ()
475476
stopDelegateControlC :: IO ()
476477
stopDelegateControlC = return ()
477478

479+
-- End no-op functions
480+
478481
foreign import ccall unsafe "runInteractiveProcess"
479482
c_runInteractiveProcess
480483
:: CWString

0 commit comments

Comments
 (0)