diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-10-18 04:06:00 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-10-18 04:06:00 (GMT) |
commit | 61c5edf6fc9a87089c85f5a53e91e99da51ba38c (patch) | |
tree | b40ddb5f913893efa2ed769ee167bf4dd2ec07fb /Doc/lib/libos.tex | |
parent | 6b471294242c70760ac64ad0b3853ad4d00e13bf (diff) | |
download | cpython-61c5edf6fc9a87089c85f5a53e91e99da51ba38c.zip cpython-61c5edf6fc9a87089c85f5a53e91e99da51ba38c.tar.gz cpython-61c5edf6fc9a87089c85f5a53e91e99da51ba38c.tar.bz2 |
Expose setgroups. Fixes feature request #468116.
Diffstat (limited to 'Doc/lib/libos.tex')
-rw-r--r-- | Doc/lib/libos.tex | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index 8adcbd5..70552c4 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -204,6 +204,13 @@ Set the current process' group id. Availability: \UNIX{}. \end{funcdesc} +\begin{funcdesc}{setgroups}{groups} +Set list of supplemental group ids associated with the current +process to \var{groups}. +Availability: \UNIX{}. +\versionadded{2.2} +\end{funcdesc} + \begin{funcdesc}{setpgrp}{} Calls the system call \cfunction{setpgrp()} or \cfunction{setpgrp(0, 0)} depending on which version is implemented (if any). See the |