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. setTerminalProcessGroupID :: Fd -> ProcessGroupID -> IO ()

    unix System.Posix.Terminal.PosixString

    setTerminalProcessGroupID fd pgid calls tcsetpgrp to set the ProcessGroupID of the foreground process group associated with the terminal attached to Fd fd to pgid.

  2. setEffectiveGroupID :: GroupID -> IO ()

    unix System.Posix.User

    setEffectiveGroupID uid calls setegid to set the effective group-id associated with the current process to gid. This does not update the real group-id or set-group-id.

  3. setEffectiveUserID :: UserID -> IO ()

    unix System.Posix.User

    setEffectiveUserID uid calls seteuid to set the effective user-id associated with the current process to uid. This does not update the real user-id or set-user-id.

  4. setGroupID :: GroupID -> IO ()

    unix System.Posix.User

    setGroupID gid calls setgid to set the real, effective, and saved set-group-id associated with the current process to gid.

  5. setGroups :: [GroupID] -> IO ()

    unix System.Posix.User

    setGroups calls setgroups to set the list of supplementary GroupIDs associated with the current process.

  6. setUserID :: UserID -> IO ()

    unix System.Posix.User

    setUserID uid calls setuid to set the real, effective, and saved set-user-id associated with the current process to uid.

  7. setEffectiveGroupID :: GroupID -> IO ()

    unix System.Posix.User.ByteString

    setEffectiveGroupID uid calls setegid to set the effective group-id associated with the current process to gid. This does not update the real group-id or set-group-id.

  8. setEffectiveUserID :: UserID -> IO ()

    unix System.Posix.User.ByteString

    setEffectiveUserID uid calls seteuid to set the effective user-id associated with the current process to uid. This does not update the real user-id or set-user-id.

  9. setGroupID :: GroupID -> IO ()

    unix System.Posix.User.ByteString

    setGroupID gid calls setgid to set the real, effective, and saved set-group-id associated with the current process to gid.

  10. setGroups :: [GroupID] -> IO ()

    unix System.Posix.User.ByteString

    setGroups calls setgroups to set the list of supplementary GroupIDs associated with the current process.

Page 162 of many | Previous | Next