summaryrefslogtreecommitdiffstats
path: root/posix1003-1/system_database.rst
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-11-03 16:58:08 +1100
committerChris Johns <chrisj@rtems.org>2016-11-03 16:58:08 +1100
commit72a62ad88f82fe1ffee50024db4dd0f3fa5806f7 (patch)
tree6b0e527e67141f8126ba56b8a3c1eb90aeed5849 /posix1003-1/system_database.rst
parentwaf: Use separate doctrees so avoid sphinx clashes. (diff)
downloadrtems-docs-72a62ad88f82fe1ffee50024db4dd0f3fa5806f7.tar.bz2
Rename all manuals with an _ to have a -. It helps released naming of files.
Diffstat (limited to 'posix1003-1/system_database.rst')
-rw-r--r--posix1003-1/system_database.rst43
1 files changed, 43 insertions, 0 deletions
diff --git a/posix1003-1/system_database.rst b/posix1003-1/system_database.rst
new file mode 100644
index 0000000..072cb04
--- /dev/null
+++ b/posix1003-1/system_database.rst
@@ -0,0 +1,43 @@
+.. comment SPDX-License-Identifier: CC-BY-SA-4.0
+
+System Databases
+################
+
+System Databases Section
+========================
+
+Database Access
+===============
+
+Group Database Access
+---------------------
+
+.. code:: c
+
+ struct group, Type, Implemented
+ getgrgid(), Function, Implemented
+ getgrgid_r(), Function, Implemented
+ getgrname(), Function, Implemented
+ getgrnam_r(), Function, Implemented
+
+NOTE: Creates /etc/group if none exists.
+
+User Database Access
+--------------------
+
+.. code:: c
+
+ struct passwd, Type, Implemented
+ getpwuid(), Function, Implemented
+ getpwuid_r(), Function, Implemented
+ getpwnam(), Function, Implemented
+ getpwnam_r(), Function, Implemented
+
+NOTE: Creates /etc/passwd if none exists.
+
+.. COMMENT: COPYRIGHT (c) 1988-2002.
+
+.. COMMENT: On-Line Applications Research Corporation (OAR).
+
+.. COMMENT: All rights reserved.
+