summaryrefslogtreecommitdiffstats
path: root/posix1003_1/system_database.rst
diff options
context:
space:
mode:
authorAmar Takhar <amar@rtems.org>2016-01-16 19:14:55 -0500
committerAmar Takhar <verm@darkbeer.org>2016-05-02 20:51:23 -0400
commitef0a063a84282f74a9da4a899c555037972873a9 (patch)
treeb49917084fd03c9d3cf0c08a1dc204298eba404b /posix1003_1/system_database.rst
parentFix warnings. (diff)
downloadrtems-docs-ef0a063a84282f74a9da4a899c555037972873a9.tar.bz2
Split document into seperate files by section.
Diffstat (limited to 'posix1003_1/system_database.rst')
-rw-r--r--posix1003_1/system_database.rst41
1 files changed, 41 insertions, 0 deletions
diff --git a/posix1003_1/system_database.rst b/posix1003_1/system_database.rst
new file mode 100644
index 0000000..0affa90
--- /dev/null
+++ b/posix1003_1/system_database.rst
@@ -0,0 +1,41 @@
+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.
+