source: rtems/doc/posix_users/systemdb.t @ e630235

4.115
Last change on this file since e630235 was 6449498, checked in by Joel Sherrill <joel.sherrill@…>, on 01/17/02 at 21:47:47

2001-01-17 Joel Sherrill <joel@…>

  • SUPPORT, LICENSE: New files.
  • Numerous files touched as part of merging the 4.5 branch onto the mainline development trunk and ensuring that the script that cuts snapshots and releases works on the documentation.
  • Property mode set to 100644
File size: 4.0 KB
Line 
1@c
2@c COPYRIGHT (c) 1988-2002.
3@c On-Line Applications Research Corporation (OAR).
4@c All rights reserved.
5@c
6@c $Id$
7@c
8
9@chapter System Databases Manager
10
11@section Introduction
12
13The
14system databases manager is ...
15
16The directives provided by the system databases manager are:
17
18@itemize @bullet
19@item @code{getgrgid} - Get Group File Entry for ID
20@item @code{getgrgid_r} - Reentrant Get Group File Entry
21@item @code{getgrnam} - Get Group File Entry for Name
22@item @code{getgrnam_r} - Reentrant Get Group File Entry for Name
23@item @code{getpwuid} - Get Password File Entry for UID
24@item @code{getpwuid_r} - Reentrant Get Password File Entry for UID
25@item @code{getpwnam} - Get Password File Entry for Name
26@item @code{getpwnam_r} - Reentrant Get Password File Entry for Name
27@end itemize
28
29@section Background
30
31There is currently no text in this section.
32
33@section Operations
34
35There is currently no text in this section.
36
37@section Directives
38
39This section details the system databases manager's directives.
40A subsection is dedicated to each of this manager's directives
41and describes the calling sequence, related constants, usage,
42and status codes.
43
44@c
45@c
46@c
47@page
48@subsection getgrgid - Get Group File Entry for ID
49
50@findex getgrgid
51@cindex  get group file entry for id
52
53@subheading CALLING SEQUENCE:
54
55@ifset is-C
56@example
57int getgrgid(
58);
59@end example
60@end ifset
61
62@ifset is-Ada
63@end ifset
64
65@subheading STATUS CODES:
66
67@table @b
68@item E
69The
70
71@end table
72
73@subheading DESCRIPTION:
74
75@subheading NOTES:
76
77@c
78@c
79@c
80@page
81@subsection getgrgid_r - Reentrant Get Group File Entry
82
83@findex getgrgid_r
84@cindex  reentrant get group file entry
85
86@subheading CALLING SEQUENCE:
87
88@ifset is-C
89@example
90int getgrgid_r(
91);
92@end example
93@end ifset
94
95@ifset is-Ada
96@end ifset
97
98@subheading STATUS CODES:
99
100@table @b
101@item E
102The
103
104@end table
105
106@subheading DESCRIPTION:
107
108@subheading NOTES:
109
110@c
111@c
112@c
113@page
114@subsection getgrnam - Get Group File Entry for Name
115
116@findex getgrnam
117@cindex  get group file entry for name
118
119@subheading CALLING SEQUENCE:
120
121@ifset is-C
122@example
123int getgrnam(
124);
125@end example
126@end ifset
127
128@ifset is-Ada
129@end ifset
130
131@subheading STATUS CODES:
132
133@table @b
134@item E
135The
136
137@end table
138
139@subheading DESCRIPTION:
140
141@subheading NOTES:
142
143@c
144@c
145@c
146@page
147@subsection getgrnam_r - Reentrant Get Group File Entry for Name
148
149@findex getgrnam_r
150@cindex  reentrant get group file entry for name
151
152@subheading CALLING SEQUENCE:
153
154@ifset is-C
155@example
156int getgrnam_r(
157);
158@end example
159@end ifset
160
161@ifset is-Ada
162@end ifset
163
164@subheading STATUS CODES:
165
166@table @b
167@item E
168The
169
170@end table
171
172@subheading DESCRIPTION:
173
174@subheading NOTES:
175
176@c
177@c
178@c
179@page
180@subsection getpwuid - Get Password File Entry for UID
181
182@findex getpwuid
183@cindex  get password file entry for uid
184
185@subheading CALLING SEQUENCE:
186
187@ifset is-C
188@example
189int getpwuid(
190);
191@end example
192@end ifset
193
194@ifset is-Ada
195@end ifset
196
197@subheading STATUS CODES:
198
199@table @b
200@item E
201The
202
203@end table
204
205@subheading DESCRIPTION:
206
207@subheading NOTES:
208
209@c
210@c
211@c
212@page
213@subsection getpwuid_r - Reentrant Get Password File Entry for UID
214
215@findex getpwuid_r
216@cindex  reentrant get password file entry for uid
217
218@subheading CALLING SEQUENCE:
219
220@ifset is-C
221@example
222int getpwuid_r(
223);
224@end example
225@end ifset
226
227@ifset is-Ada
228@end ifset
229
230@subheading STATUS CODES:
231
232@table @b
233@item E
234The
235
236@end table
237
238@subheading DESCRIPTION:
239
240@subheading NOTES:
241
242@c
243@c
244@c
245@page
246@subsection getpwnam - Password File Entry for Name
247
248@findex getpwnam
249@cindex  password file entry for name
250
251@subheading CALLING SEQUENCE:
252
253@ifset is-C
254@example
255int getpwnam(
256);
257@end example
258@end ifset
259
260@ifset is-Ada
261@end ifset
262
263@subheading STATUS CODES:
264
265@table @b
266@item E
267The
268
269@end table
270
271@subheading DESCRIPTION:
272
273@subheading NOTES:
274
275@c
276@c
277@c
278@page
279@subsection getpwnam_r - Reentrant Get Password File Entry for Name
280
281@findex getpwnam_r
282@cindex  reentrant get password file entry for name
283
284@subheading CALLING SEQUENCE:
285
286@ifset is-C
287@example
288int getpwnam_r(
289);
290@end example
291@end ifset
292
293@ifset is-Ada
294@end ifset
295
296@subheading STATUS CODES:
297
298@table @b
299@item E
300The
301
302@end table
303
304@subheading DESCRIPTION:
305
306@subheading NOTES:
307
Note: See TracBrowser for help on using the repository browser.