Hoogle Search
Within LTS Haskell 24.40 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
unix System.Posix.User.ByteString getRealUserID calls getuid to obtain the real UserID associated with the current process.
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.
groupID :: GroupEntry -> GroupIDunix System.Posix.User.ByteString The unique numeric ID for this group (gr_gid)
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.
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.
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.
-
unix System.Posix.User.ByteString setUserID uid calls setuid to set the real, effective, and saved set-user-id associated with the current process to uid.
userGroupID :: UserEntry -> GroupIDunix System.Posix.User.ByteString Primary group ID (pw_gid)
-
unix System.Posix.User.ByteString Numeric ID for this user (pw_uid)
ropt_hide_successes :: RunnerOptions' (f :: Type -> Type) -> f Booltest-framework Test.Framework.Runners.Options No documentation available.