[Python-checkins] CVS: python/dist/src/Doc/lib libos.tex,1.42,1.43

A.M. Kuchling python-dev@python.org
Wed, 12 Jul 2000 18:27:00 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv3810/Doc/lib

Modified Files:
	libos.tex 
Log Message:
From Sam Rushing's Medusa, via SF patch #100858: add & document
os.seteuid(), os.setegid(), os.setreuid(), os.setregid().


Index: libos.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libos.tex,v
retrieving revision 1.42
retrieving revision 1.43
diff -C2 -r1.42 -r1.43
*** libos.tex	2000/06/30 16:06:19	1.42
--- libos.tex	2000/07/13 01:26:58	1.43
***************
*** 182,185 ****
--- 182,195 ----
  \end{funcdesc}
  
+ \begin{funcdesc}{setegid}{egid}
+ Set the current process's effective group id.
+ Availability: \UNIX{}.
+ \end{funcdesc}
+ 
+ \begin{funcdesc}{seteuid}{euid}
+ Set the current process's effective user id.
+ Availability: \UNIX{}.
+ \end{funcdesc}
+ 
  \begin{funcdesc}{setgid}{gid}
  Set the current process' group id.
***************
*** 197,200 ****
--- 207,220 ----
  Calls the system call \cfunction{setpgid()}.  See the \UNIX{} manual
  for the semantics.
+ Availability: \UNIX{}.
+ \end{funcdesc}
+ 
+ \begin{funcdesc}{setreuid}{ruid, euid}
+ Set the current process's real and effective user ids.
+ Availability: \UNIX{}.
+ \end{funcdesc}
+ 
+ \begin{funcdesc}{setregid}{rgid, egid}
+ Set the current process's real and effective group ids.
  Availability: \UNIX{}.
  \end{funcdesc}