Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
typed-process System.Process.Typed Set the child's standard output stream to the given StreamSpec. Default: inherit
setWorkingDir :: FilePath -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderrtyped-process System.Process.Typed Set the working directory of the child process. Default: current process's working directory.
setWorkingDirInherit :: ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderrtyped-process System.Process.Typed Inherit the working directory from the parent process.
setChildGroup :: GroupID -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderrtyped-process System.Process.Typed.Internal Set the child process's group ID with the POSIX setgid syscall, does nothing on non-POSIX. See child_group. Default: False
setChildGroupInherit :: ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderrtyped-process System.Process.Typed.Internal Inherit the group from the parent process.
setChildUser :: UserID -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderrtyped-process System.Process.Typed.Internal Set the child process's user ID with the POSIX setuid syscall, does nothing on non-POSIX. See child_user. Default: False
setChildUserInherit :: ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderrtyped-process System.Process.Typed.Internal Inherit the user from the parent process.
setCloseFds :: Bool -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderrtyped-process System.Process.Typed.Internal Should we close all file descriptors besides stdin, stdout, and stderr? See close_fds for more information. Default: False
setCreateGroup :: Bool -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderrtyped-process System.Process.Typed.Internal Should we create a new process group? Default: False
-
typed-process System.Process.Typed.Internal Create new console on Windows, see create_new_console. Default: False