/usr/share/doc/libghc-concurrent-output-doc/html/System-Process-Concurrent.html is in libghc-concurrent-output-doc 1.9.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>System.Process.Concurrent</title><link href="ocean.css" rel="stylesheet" type="text/css" title="Ocean" /><script src="haddock-util.js" type="text/javascript"></script><script src="file:///usr/share/javascript/mathjax/MathJax.js" type="text/javascript"></script><script type="text/javascript">//<![CDATA[
window.onload = function () {pageLoad();setSynopsis("mini_System-Process-Concurrent.html");};
//]]>
</script></head><body><div id="package-header"><ul class="links" id="page-menu"><li><a href="src/System-Process-Concurrent.html">Source</a></li><li><a href="index.html">Contents</a></li><li><a href="doc-index.html">Index</a></li></ul><p class="caption">concurrent-output-1.9.2: Ungarble output from several threads or commands</p></div><div id="content"><div id="module-header"><table class="info"><tr><th valign="top">Copyright</th><td>2015 Joey Hess <id@joeyh.name></td></tr><tr><th>License</th><td>BSD-2-clause</td></tr><tr><th>Safe Haskell</th><td>None</td></tr><tr><th>Language</th><td>Haskell98</td></tr></table><p class="caption">System.Process.Concurrent</p></div><div id="description"><p class="caption">Description</p><div class="doc"><p>The functions exported by this module are intended to be drop-in
replacements for those from System.Process, when converting a whole
program to use System.Console.Concurrent.</p></div></div><div id="synopsis"><p id="control.syn" class="caption expander" onclick="toggleSection('syn')">Synopsis</p><ul id="section.syn" class="hide" onclick="toggleSection('syn')"><li class="src short"><a href="#v:createProcess">createProcess</a> :: <a href="file:///usr/share/doc/ghc-doc/html/libraries/process-1.4.3.0/System-Process.html#t:CreateProcess">CreateProcess</a> -> <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/System-IO.html#t:IO">IO</a> (<a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/Data-Maybe.html#t:Maybe">Maybe</a> <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/GHC-IO-Handle.html#t:Handle">Handle</a>, <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/Data-Maybe.html#t:Maybe">Maybe</a> <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/GHC-IO-Handle.html#t:Handle">Handle</a>, <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/Data-Maybe.html#t:Maybe">Maybe</a> <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/GHC-IO-Handle.html#t:Handle">Handle</a>, <a href="file:///usr/share/doc/ghc-doc/html/libraries/process-1.4.3.0/System-Process.html#t:ProcessHandle">ProcessHandle</a>)</li><li class="src short"><a href="#v:waitForProcess">waitForProcess</a> :: <a href="file:///usr/share/doc/ghc-doc/html/libraries/process-1.4.3.0/System-Process.html#t:ProcessHandle">ProcessHandle</a> -> <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/System-IO.html#t:IO">IO</a> <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/System-Exit.html#t:ExitCode">ExitCode</a></li></ul></div><div id="interface"><h1>Documentation</h1><div class="top"><p class="src"><a id="v:createProcess" class="def">createProcess</a> :: <a href="file:///usr/share/doc/ghc-doc/html/libraries/process-1.4.3.0/System-Process.html#t:CreateProcess">CreateProcess</a> -> <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/System-IO.html#t:IO">IO</a> (<a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/Data-Maybe.html#t:Maybe">Maybe</a> <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/GHC-IO-Handle.html#t:Handle">Handle</a>, <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/Data-Maybe.html#t:Maybe">Maybe</a> <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/GHC-IO-Handle.html#t:Handle">Handle</a>, <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/Data-Maybe.html#t:Maybe">Maybe</a> <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/GHC-IO-Handle.html#t:Handle">Handle</a>, <a href="file:///usr/share/doc/ghc-doc/html/libraries/process-1.4.3.0/System-Process.html#t:ProcessHandle">ProcessHandle</a>) <a href="src/System-Process-Concurrent.html#createProcess" class="link">Source</a> <a href="#v:createProcess" class="selflink">#</a></p><div class="doc"><p>Calls <code><a href="System-Console-Concurrent-Internal.html#v:createProcessConcurrent">createProcessConcurrent</a></code></p><p>You should use the waitForProcess in this module on the resulting
ProcessHandle. Using System.Process.waitForProcess instead can have
mildly unexpected results.</p></div></div><div class="top"><p class="src"><a id="v:waitForProcess" class="def">waitForProcess</a> :: <a href="file:///usr/share/doc/ghc-doc/html/libraries/process-1.4.3.0/System-Process.html#t:ProcessHandle">ProcessHandle</a> -> <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/System-IO.html#t:IO">IO</a> <a href="file:///usr/share/doc/ghc-doc/html/libraries/base-4.9.1.0/System-Exit.html#t:ExitCode">ExitCode</a> <a href="src/System-Process-Concurrent.html#waitForProcess" class="link">Source</a> <a href="#v:waitForProcess" class="selflink">#</a></p><div class="doc"><p>Calls <code><a href="System-Console-Concurrent-Internal.html#v:waitForProcessConcurrent">waitForProcessConcurrent</a></code></p><p>You should only use this on a ProcessHandle obtained by calling
createProcess from this module. Using this with a ProcessHandle
obtained from System.Process.createProcess etc will have extremely
unexpected results; it can wait a very long time before returning.</p></div></div></div></div><div id="footer"><p>Produced by <a href="http://www.haskell.org/haddock/">Haddock</a> version 2.17.3</p></div></body></html>
|