summaryrefslogtreecommitdiffstats
path: root/doc/posix_users/procenv.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-11 21:24:38 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-11 21:24:38 +0000
commit7479042a5914a6b9223e734b4a14652314661e1a (patch)
treee673fe698aa58bb0e4c6be0bd468ced47207594a /doc/posix_users/procenv.t
parentAdded descriptions. (diff)
downloadrtems-7479042a5914a6b9223e734b4a14652314661e1a.tar.bz2
Generated concept and function index entries.
Diffstat (limited to 'doc/posix_users/procenv.t')
-rw-r--r--doc/posix_users/procenv.t148
1 files changed, 143 insertions, 5 deletions
diff --git a/doc/posix_users/procenv.t b/doc/posix_users/procenv.t
index c232585e23..83b5f09c26 100644
--- a/doc/posix_users/procenv.t
+++ b/doc/posix_users/procenv.t
@@ -1,9 +1,9 @@
@c
-@c COPYRIGHT (c) 1988-1998.
-@c On-Line Applications Research Corporation (OAR).
-@c All rights reserved.
+@c COPYRIGHT (c) 1988-1998.
+@c On-Line Applications Research Corporation (OAR).
+@c All rights reserved.
@c
-@c $Id$
+@c $Id$
@c
@chapter Process Environment Manager
@@ -55,9 +55,15 @@ A subsection is dedicated to each of this manager's directives
and describes the calling sequence, related constants, usage,
and status codes.
+@c
+@c
+@c
@page
@subsection getpid - Get Process ID
+@findex getpid
+@cindex get process id
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -82,9 +88,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection getppid - Get Parent Process ID
+@findex getppid
+@cindex get parent process id
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -109,9 +121,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection getuid - Get User ID
+@findex getuid
+@cindex get user id
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -136,9 +154,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection geteuid - Get Effective User ID
+@findex geteuid
+@cindex get effective user id
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -163,9 +187,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection getgid - Get Real Group ID
+@findex getgid
+@cindex get real group id
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -190,9 +220,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection getegid - Get Effective Group ID
+@findex getegid
+@cindex get effective group id
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -217,9 +253,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection setuid - Set User ID
+@findex setuid
+@cindex set user id
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -244,9 +286,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection setgid - Set Group ID
+@findex setgid
+@cindex set group id
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -271,9 +319,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection getgroups - Get Supplementary Group IDs
+@findex getgroups
+@cindex get supplementary group ids
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -298,9 +352,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection getlogin - Get User Name
+@findex getlogin
+@cindex get user name
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -325,9 +385,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection getlogin_r - Reentrant Get User Name
+@findex getlogin_r
+@cindex reentrant get user name
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -352,9 +418,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection getpgrp - Get Process Group ID
+@findex getpgrp
+@cindex get process group id
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -379,9 +451,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection setsid - Create Session and Set Process Group ID
+@findex setsid
+@cindex create session and set process group id
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -406,9 +484,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection setpgid - Set Process Group ID for Job Control
+@findex setpgid
+@cindex set process group id for job control
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -433,9 +517,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection uname - Get System Name
+@findex uname
+@cindex get system name
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -460,16 +550,22 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection times - Get process times
+@findex times
+@cindex get process times
+
@subheading CALLING SEQUENCE:
@example
#include <sys/time.h>
clock_t times(
- struct tms *buf
+struct tms *buf
);
@end example
@@ -490,9 +586,15 @@ since the systm has been up.
NONE
+@c
+@c
+@c
@page
@subsection getenv - Get Environment Variables
+@findex getenv
+@cindex get environment variables
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -517,9 +619,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection setenv - Set Environment Variables
+@findex setenv
+@cindex set environment variables
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -544,9 +652,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection ctermid - Generate Terminal Pathname
+@findex ctermid
+@cindex generate terminal pathname
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -571,9 +685,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection ttyname - Determine Terminal Device Name
+@findex ttyname
+@cindex determine terminal device name
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -598,9 +718,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection ttyname_r - Reentrant Determine Terminal Device Name
+@findex ttyname_r
+@cindex reentrant determine terminal device name
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -625,9 +751,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection isatty - Determine if File Descriptor is Terminal
+@findex isatty
+@cindex determine if file descriptor is terminal
+
@subheading CALLING SEQUENCE:
@ifset is-C
@@ -652,9 +784,15 @@ The
@subheading NOTES:
+@c
+@c
+@c
@page
@subsection sysconf - Get Configurable System Variables
+@findex sysconf
+@cindex get configurable system variables
+
@subheading CALLING SEQUENCE:
@ifset is-C