Hoogle Search
Within LTS Haskell 24.33 (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 environment variables of the child process. Default: current process's environment.
setEnvInherit :: ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderrtyped-process System.Process.Typed Inherit the environment variables from the parent process.
setNewSession :: Bool -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderrtyped-process System.Process.Typed Set a new session with the POSIX setsid syscall, does nothing on non-POSIX. See new_session. Default: False
-
typed-process System.Process.Typed Set the child's standard error stream to the given StreamSpec. Default: inherit
-
typed-process System.Process.Typed Set the child's standard input stream to the given StreamSpec. Default: inherit
-
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.