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.

  1. setStdout :: StreamSpec 'STOutput stdout -> ProcessConfig stdin stdout0 stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed

    Set the child's standard output stream to the given StreamSpec. Default: inherit

  2. setWorkingDir :: FilePath -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed

    Set the working directory of the child process. Default: current process's working directory.

  3. setWorkingDirInherit :: ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed

    Inherit the working directory from the parent process.

  4. setChildGroup :: GroupID -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-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

  5. setChildGroupInherit :: ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed.Internal

    Inherit the group from the parent process.

  6. setChildUser :: UserID -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-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

  7. setChildUserInherit :: ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed.Internal

    Inherit the user from the parent process.

  8. setCloseFds :: Bool -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed.Internal

    Should we close all file descriptors besides stdin, stdout, and stderr? See close_fds for more information. Default: False

  9. setCreateGroup :: Bool -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed.Internal

    Should we create a new process group? Default: False

  10. setCreateNewConsole :: Bool -> ProcessConfig stdin stdout stderr -> ProcessConfig stdin stdout stderr

    typed-process System.Process.Typed.Internal

    Create new console on Windows, see create_new_console. Default: False

Page 226 of many | Previous | Next