diff options
author | Fred Drake <fdrake@acm.org> | 1998-12-21 18:52:53 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-12-21 18:52:53 (GMT) |
commit | 3b02ddfa4178446ac6fd3b2b30ab35fd4b5a5503 (patch) | |
tree | 695f4ad7f89630e3aa56af8e3cea7c8b81083dbe /Doc/lib/libposix.tex | |
parent | 98c17b3aeee627b2191f3d6954ae44b741b368f4 (diff) | |
download | cpython-3b02ddfa4178446ac6fd3b2b30ab35fd4b5a5503.zip cpython-3b02ddfa4178446ac6fd3b2b30ab35fd4b5a5503.tar.gz cpython-3b02ddfa4178446ac6fd3b2b30ab35fd4b5a5503.tar.bz2 |
Add a bunch of index entries related to retrieving information from
the process table.
Diffstat (limited to 'Doc/lib/libposix.tex')
-rw-r--r-- | Doc/lib/libposix.tex | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/lib/libposix.tex b/Doc/lib/libposix.tex index 0071bf1..27f8197 100644 --- a/Doc/lib/libposix.tex +++ b/Doc/lib/libposix.tex @@ -180,26 +180,32 @@ Return the current process' group id. \end{funcdesc} \begin{funcdesc}{getpgrp}{} +\index{process!group} Return the current process group id. (Not on MS-DOS.) \end{funcdesc} \begin{funcdesc}{getpid}{} +\index{process!id} Return the current process id. (Not on MS-DOS.) \end{funcdesc} \begin{funcdesc}{getppid}{} +\index{process!id of parent} Return the parent's process id. (Not on MS-DOS.) \end{funcdesc} \begin{funcdesc}{getuid}{} +\index{user id} Return the current process' user id. (Not on MS-DOS.) \end{funcdesc} \begin{funcdesc}{kill}{pid, sig} +\index{process!killing} +\index{process!signalling} Kill the process \var{pid} with signal \var{sig}. (Not on MS-DOS.) \end{funcdesc} |