diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-12-27 10:21:19 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-12-27 10:21:19 (GMT) |
commit | 33e94437ca0a3dfa27869c2cb170d2e3cbfa1381 (patch) | |
tree | 45fa5eef5af7a0d0d3055f2a7cfdcefb711f4097 /Doc/lib/libos.tex | |
parent | 438b534ad0e7522cadba20cd3aec41d02b2bc09b (diff) | |
download | cpython-33e94437ca0a3dfa27869c2cb170d2e3cbfa1381.zip cpython-33e94437ca0a3dfa27869c2cb170d2e3cbfa1381.tar.gz cpython-33e94437ca0a3dfa27869c2cb170d2e3cbfa1381.tar.bz2 |
Document killpg.
Diffstat (limited to 'Doc/lib/libos.tex')
-rw-r--r-- | Doc/lib/libos.tex | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index 2e0f8ae..42acc35 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -1120,6 +1120,14 @@ specific signals available on the host platform are defined in the Availability: \UNIX. \end{funcdesc} +\begin{funcdesc}{killpg}{pgid, sig} +\index{process!killing} +\index{process!signalling} +Kill the process group \var{pgid} with the signal \var{sig}. +Availability: \UNIX. +\versionadded{2.3} +\end{funcdesc} + \begin{funcdesc}{nice}{increment} Add \var{increment} to the process's ``niceness''. Return the new niceness. |