Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. createProcessGroupFor :: ProcessID -> IO ProcessGroupID

    unix System.Posix.Process

    createProcessGroupFor pid calls setpgid to make process pid a new process group leader.

  2. createProcessGroupFor :: ProcessID -> IO ProcessGroupID

    unix System.Posix.Process.ByteString

    createProcessGroupFor pid calls setpgid to make process pid a new process group leader.

  3. createProcessGroupFor :: ProcessID -> IO ProcessGroupID

    unix System.Posix.Process.PosixString

    createProcessGroupFor pid calls setpgid to make process pid a new process group leader.

  4. getGroupEntryForID :: GroupID -> IO GroupEntry

    unix System.Posix.User

    getGroupEntryForID gid calls getgrgid_r to obtain the GroupEntry information associated with GroupID gid. This operation may fail with isDoesNotExistError if no such group exists.

  5. getGroupEntryForName :: String -> IO GroupEntry

    unix System.Posix.User

    getGroupEntryForName name calls getgrnam_r to obtain the GroupEntry information associated with the group called name. This operation may fail with isDoesNotExistError if no such group exists.

  6. getUserEntryForID :: UserID -> IO UserEntry

    unix System.Posix.User

    getUserEntryForID uid calls getpwuid_r to obtain the UserEntry information associated with UserID uid. This operation may fail with isDoesNotExistError if no such user exists.

  7. getUserEntryForName :: String -> IO UserEntry

    unix System.Posix.User

    getUserEntryForName name calls getpwnam_r to obtain the UserEntry information associated with the user login name. This operation may fail with isDoesNotExistError if no such user exists.

  8. getGroupEntryForID :: GroupID -> IO GroupEntry

    unix System.Posix.User.ByteString

    getGroupEntryForID gid calls getgrgid_r to obtain the GroupEntry information associated with GroupID gid. This operation may fail with isDoesNotExistError if no such group exists.

  9. getGroupEntryForName :: ByteString -> IO GroupEntry

    unix System.Posix.User.ByteString

    getGroupEntryForName name calls getgrnam_r to obtain the GroupEntry information associated with the group called name. This operation may fail with isDoesNotExistError if no such group exists.

  10. getUserEntryForID :: UserID -> IO UserEntry

    unix System.Posix.User.ByteString

    getUserEntryForID uid calls getpwuid_r to obtain the UserEntry information associated with UserID uid. This operation may fail with isDoesNotExistError if no such user exists.

Page 420 of many | Previous | Next