diff options
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libos.tex | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index 55db0e1..803d90b 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -181,6 +181,16 @@ calls to \function{putenv()} don't update \code{os.environ}, so it is actually preferable to assign to items of \code{os.environ}. \end{funcdesc} +\begin{funcdesc}{setegid}{egid} +Set the current process's effective group id. +Availability: \UNIX{}. +\end{funcdesc} + +\begin{funcdesc}{seteuid}{euid} +Set the current process's effective user id. +Availability: \UNIX{}. +\end{funcdesc} + \begin{funcdesc}{setgid}{gid} Set the current process' group id. Availability: \UNIX{}. @@ -199,6 +209,16 @@ for the semantics. Availability: \UNIX{}. \end{funcdesc} +\begin{funcdesc}{setreuid}{ruid, euid} +Set the current process's real and effective user ids. +Availability: \UNIX{}. +\end{funcdesc} + +\begin{funcdesc}{setregid}{rgid, egid} +Set the current process's real and effective group ids. +Availability: \UNIX{}. +\end{funcdesc} + \begin{funcdesc}{setsid}{} Calls the system call \cfunction{setsid()}. See the \UNIX{} manual for the semantics. |