source: rtems-docs/posix1003_1/system_database.rst @ 489740f

4.115
Last change on this file since 489740f was 489740f, checked in by Chris Johns <chrisj@…>, on 05/20/16 at 02:47:09

Set SPDX License Identifier in each source file.

  • Property mode set to 100644
File size: 890 bytes
Line 
1.. comment SPDX-License-Identifier: CC-BY-SA-4.0
2
3System Databases
4################
5
6System Databases Section
7========================
8
9Database Access
10===============
11
12Group Database Access
13---------------------
14
15.. code:: c
16
17    struct group, Type, Implemented
18    getgrgid(), Function, Implemented
19    getgrgid_r(), Function, Implemented
20    getgrname(), Function, Implemented
21    getgrnam_r(), Function, Implemented
22
23NOTE: Creates /etc/group if none exists.
24
25User Database Access
26--------------------
27
28.. code:: c
29
30    struct passwd, Type, Implemented
31    getpwuid(), Function, Implemented
32    getpwuid_r(), Function, Implemented
33    getpwnam(), Function, Implemented
34    getpwnam_r(), Function, Implemented
35
36NOTE: Creates /etc/passwd if none exists.
37
38.. COMMENT: COPYRIGHT (c) 1988-2002.
39
40.. COMMENT: On-Line Applications Research Corporation (OAR).
41
42.. COMMENT: All rights reserved.
43
Note: See TracBrowser for help on using the repository browser.