diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-06-13 21:09:11 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-06-13 21:09:11 (GMT) |
commit | 606edc1d971a0c5e4f5d379ecfa69f42b5b1d691 (patch) | |
tree | a2145d170070b80f06ff05e2285f02a5e8fe9056 /Doc/lib/libos.tex | |
parent | 14f8b4cfcb98de74b9c6e9316539be9e2a5cd31f (diff) | |
download | cpython-606edc1d971a0c5e4f5d379ecfa69f42b5b1d691.zip cpython-606edc1d971a0c5e4f5d379ecfa69f42b5b1d691.tar.gz cpython-606edc1d971a0c5e4f5d379ecfa69f42b5b1d691.tar.bz2 |
Patch #568235: Add posix.setpgid.
Diffstat (limited to 'Doc/lib/libos.tex')
-rw-r--r-- | Doc/lib/libos.tex | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index c02d6a6..ebc3c5c 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -144,6 +144,12 @@ are multiple login names which map to the same user id. Availability: \UNIX. \end{funcdesc} +\begin{funcdesc}{getpgid}{pid} +Return the process group id of the process with process id \var{pid}. +If \var{pid} is 0, the process group id of the current process is +returned. Availability: \UNIX. +\end{funcdesc} + \begin{funcdesc}{getpgrp}{} \index{process!group} Return the id of the current process group. |