summaryrefslogtreecommitdiffstats
path: root/posix_users/system_database.rst
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-02-26 18:22:07 +1100
committerAmar Takhar <verm@darkbeer.org>2016-05-02 20:51:26 -0400
commitfa70fd20878e402610c263f129266593d31a0376 (patch)
treec609d33c7047b975cfe8e0ac0df020fb26dae255 /posix_users/system_database.rst
parentUpdate the shell user's guide top level. (diff)
downloadrtems-docs-fa70fd20878e402610c263f129266593d31a0376.tar.bz2
POSIX User clean up.
Diffstat (limited to 'posix_users/system_database.rst')
-rw-r--r--posix_users/system_database.rst125
1 files changed, 80 insertions, 45 deletions
diff --git a/posix_users/system_database.rst b/posix_users/system_database.rst
index 60d6e02..e629f9b 100644
--- a/posix_users/system_database.rst
+++ b/posix_users/system_database.rst
@@ -1,29 +1,32 @@
+.. COMMENT: COPYRIGHT(c) 1988-2002.
+.. COMMENT: On-Line Applications Research Corporation(OAR).
+.. COMMENT: All rights reserved.
+
System Databases Manager
########################
Introduction
============
-The
-system databases manager is ...
+The system databases manager is ...
The directives provided by the system databases manager are:
-- ``getgrgid`` - Get Group File Entry for ID
+- getgrgid_ - Get Group File Entry for ID
-- ``getgrgid_r`` - Reentrant Get Group File Entry
+- getgrgid_r_ - Reentrant Get Group File Entry
-- ``getgrnam`` - Get Group File Entry for Name
+- getgrnam_ - Get Group File Entry for Name
-- ``getgrnam_r`` - Reentrant Get Group File Entry for Name
+- getgrnam_r_ - Reentrant Get Group File Entry for Name
-- ``getpwuid`` - Get Password File Entry for UID
+- getpwuid_ - Get Password File Entry for UID
-- ``getpwuid_r`` - Reentrant Get Password File Entry for UID
+- getpwuid_r_ - Reentrant Get Password File Entry for UID
-- ``getpwnam`` - Get Password File Entry for Name
+- getpwnam_ - Get Password File Entry for Name
-- ``getpwnam_r`` - Reentrant Get Password File Entry for Name
+- getpwnam_r_ - Reentrant Get Password File Entry for Name
Background
==========
@@ -38,10 +41,11 @@ There is currently no text in this section.
Directives
==========
-This section details the system databases manager's directives.
-A subsection is dedicated to each of this manager's directives
-and describes the calling sequence, related constants, usage,
-and status codes.
+This section details the system databases manager's directives. A subsection
+is dedicated to each of this manager's directives and describes the calling
+sequence, related constants, usage, and status codes.
+
+.. _getgrgid:
getgrgid - Get Group File Entry for ID
--------------------------------------
@@ -50,20 +54,25 @@ getgrgid - Get Group File Entry for ID
**CALLING SEQUENCE:**
-.. code:: c
+.. code-block:: c
int getgrgid(
);
**STATUS CODES:**
-*E*
- The
+.. list-table::
+ :class: rtems-table
+
+ * - ``E``
+ - The
**DESCRIPTION:**
**NOTES:**
+.. _getgrgid_r:
+
getgrgid_r - Reentrant Get Group File Entry
-------------------------------------------
.. index:: getgrgid_r
@@ -71,20 +80,25 @@ getgrgid_r - Reentrant Get Group File Entry
**CALLING SEQUENCE:**
-.. code:: c
+.. code-block:: c
int getgrgid_r(
);
**STATUS CODES:**
-*E*
- The
+.. list-table::
+ :class: rtems-table
+
+ * - ``E``
+ - The
**DESCRIPTION:**
**NOTES:**
+.. _getgrnam:
+
getgrnam - Get Group File Entry for Name
----------------------------------------
.. index:: getgrnam
@@ -92,20 +106,25 @@ getgrnam - Get Group File Entry for Name
**CALLING SEQUENCE:**
-.. code:: c
+.. code-block:: c
int getgrnam(
);
**STATUS CODES:**
-*E*
- The
+.. list-table::
+ :class: rtems-table
+
+ * - ``E``
+ - The
**DESCRIPTION:**
**NOTES:**
+.. _getgrnam_r:
+
getgrnam_r - Reentrant Get Group File Entry for Name
----------------------------------------------------
.. index:: getgrnam_r
@@ -113,20 +132,25 @@ getgrnam_r - Reentrant Get Group File Entry for Name
**CALLING SEQUENCE:**
-.. code:: c
+.. code-block:: c
int getgrnam_r(
);
**STATUS CODES:**
-*E*
- The
+.. list-table::
+ :class: rtems-table
+
+ * - ``E``
+ - The
**DESCRIPTION:**
**NOTES:**
+.. _getpwuid:
+
getpwuid - Get Password File Entry for UID
------------------------------------------
.. index:: getpwuid
@@ -134,20 +158,25 @@ getpwuid - Get Password File Entry for UID
**CALLING SEQUENCE:**
-.. code:: c
+.. code-block:: c
int getpwuid(
);
**STATUS CODES:**
-*E*
- The
+.. list-table::
+ :class: rtems-table
+
+ * - ``E``
+ - The
**DESCRIPTION:**
**NOTES:**
+.. _getpwuid_r:
+
getpwuid_r - Reentrant Get Password File Entry for UID
------------------------------------------------------
.. index:: getpwuid_r
@@ -155,20 +184,25 @@ getpwuid_r - Reentrant Get Password File Entry for UID
**CALLING SEQUENCE:**
-.. code:: c
+.. code-block:: c
int getpwuid_r(
);
**STATUS CODES:**
-*E*
- The
+.. list-table::
+ :class: rtems-table
+
+ * - ``E``
+ - The
**DESCRIPTION:**
**NOTES:**
+.. _getpwnam:
+
getpwnam - Password File Entry for Name
---------------------------------------
.. index:: getpwnam
@@ -176,20 +210,25 @@ getpwnam - Password File Entry for Name
**CALLING SEQUENCE:**
-.. code:: c
+.. code-block:: c
int getpwnam(
);
**STATUS CODES:**
-*E*
- The
+.. list-table::
+ :class: rtems-table
+
+ * - ``E``
+ - The
**DESCRIPTION:**
**NOTES:**
+.. _getpwnam_r:
+
getpwnam_r - Reentrant Get Password File Entry for Name
-------------------------------------------------------
.. index:: getpwnam_r
@@ -197,23 +236,19 @@ getpwnam_r - Reentrant Get Password File Entry for Name
**CALLING SEQUENCE:**
-.. code:: c
+.. code-block:: c
int getpwnam_r(
);
**STATUS CODES:**
-*E*
- The
+.. list-table::
+ :class: rtems-table
+
+ * - ``E``
+ - The
**DESCRIPTION:**
**NOTES:**
-
-.. COMMENT: COPYRIGHT(c) 1988-2002.
-
-.. COMMENT: On-Line Applications Research Corporation(OAR).
-
-.. COMMENT: All rights reserved.
-