[Python-checkins] python/dist/src/Doc/lib libos.tex,1.74.2.1.2.1,1.74.2.1.2.2

fdrake@sourceforge.net fdrake@sourceforge.net
Fri, 26 Apr 2002 13:59:57 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv14914/lib

Modified Files:
      Tag: release22-maint
	libos.tex 
Log Message:
Slightly expand and clarify the differences between getegid(), getgid(),
getpgrp(), and setpgid().
This closes SF bug #547939.


Index: libos.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libos.tex,v
retrieving revision 1.74.2.1.2.1
retrieving revision 1.74.2.1.2.2
diff -C2 -d -r1.74.2.1.2.1 -r1.74.2.1.2.2
*** libos.tex	1 Apr 2002 23:29:02 -0000	1.74.2.1.2.1
--- libos.tex	26 Apr 2002 20:59:55 -0000	1.74.2.1.2.2
***************
*** 114,118 ****
  
  \begin{funcdesc}{getegid}{}
! Return the current process' effective group id.
  Availability: \UNIX.
  \end{funcdesc}
--- 114,120 ----
  
  \begin{funcdesc}{getegid}{}
! Return the effective group id of the current process.  This
! corresponds to the `set id' bit on the file being executed in the
! current process.
  Availability: \UNIX.
  \end{funcdesc}
***************
*** 126,130 ****
  \begin{funcdesc}{getgid}{}
  \index{process!group}
! Return the current process' group id.
  Availability: \UNIX.
  \end{funcdesc}
--- 128,132 ----
  \begin{funcdesc}{getgid}{}
  \index{process!group}
! Return the real group id of the current process.
  Availability: \UNIX.
  \end{funcdesc}
***************
*** 144,148 ****
  \begin{funcdesc}{getpgrp}{}
  \index{process!group}
! Return the current process group id.
  Availability: \UNIX.
  \end{funcdesc}
--- 146,150 ----
  \begin{funcdesc}{getpgrp}{}
  \index{process!group}
! Return the id of the current process group.
  Availability: \UNIX.
  \end{funcdesc}
***************
*** 219,225 ****
  \end{funcdesc}
  
! \begin{funcdesc}{setpgid}{pid, pgrp}
! Calls the system call \cfunction{setpgid()}.  See the \UNIX{} manual
! for the semantics.
  Availability: \UNIX.
  \end{funcdesc}
--- 221,228 ----
  \end{funcdesc}
  
! \begin{funcdesc}{setpgid}{pid, pgrp} Calls the system call
! \cfunction{setpgid()} to set the process group id of the process with
! id \var{pid} to the process group with id \var{pgrp}.  See the \UNIX{}
! manual for the semantics.
  Availability: \UNIX.
  \end{funcdesc}