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.
createProcessGroupFor :: ProcessID -> IO ProcessGroupIDunix System.Posix.Process createProcessGroupFor pid calls setpgid to make process pid a new process group leader.
createProcessGroupFor :: ProcessID -> IO ProcessGroupIDunix System.Posix.Process.ByteString createProcessGroupFor pid calls setpgid to make process pid a new process group leader.
createProcessGroupFor :: ProcessID -> IO ProcessGroupIDunix System.Posix.Process.PosixString createProcessGroupFor pid calls setpgid to make process pid a new process group leader.
getGroupEntryForID :: GroupID -> IO GroupEntryunix 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.
getGroupEntryForName :: String -> IO GroupEntryunix 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.
getUserEntryForID :: UserID -> IO UserEntryunix 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.
getUserEntryForName :: String -> IO UserEntryunix 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.
getGroupEntryForID :: GroupID -> IO GroupEntryunix 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.
getGroupEntryForName :: ByteString -> IO GroupEntryunix 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.
getUserEntryForID :: UserID -> IO UserEntryunix 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.