summaryrefslogtreecommitdiffstats
path: root/c-user/key_concepts.rst
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2022-11-30 09:59:20 -0600
committerJoel Sherrill <joel@rtems.org>2022-11-30 09:59:20 -0600
commitaaba6e582647493ea8416063bf350de8393315c4 (patch)
tree622e419eaa51fee0ce7d0003587215039cc52307 /c-user/key_concepts.rst
parentuser/zynqmp: Add information about CFC-400X (diff)
downloadrtems-docs-aaba6e582647493ea8416063bf350de8393315c4.tar.bz2
c-user/*: Add trailing parentheses on methods in index which were missing it
Closes #4766.
Diffstat (limited to '')
-rw-r--r--c-user/key_concepts.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/c-user/key_concepts.rst b/c-user/key_concepts.rst
index 3628954..e3f4811 100644
--- a/c-user/key_concepts.rst
+++ b/c-user/key_concepts.rst
@@ -45,7 +45,7 @@ An object name is an unsigned thirty-two bit entity associated with the object
by the user. The data type ``rtems_name`` is used to store object
names.
-.. index:: rtems_build_name
+.. index:: rtems_build_name()
Although not required by RTEMS, object names are often composed of four ASCII
characters which help identify that object. For example, a task which causes a
@@ -64,7 +64,7 @@ would be difficult to assign meaningful ASCII names to each task. A more
convenient approach would be to name them the binary values one through
one-hundred, respectively.
-.. index:: rtems_object_get_name
+.. index:: rtems_object_get_name()
RTEMS provides a helper routine, ``rtems_object_get_name``, which can be used
to obtain the name of any RTEMS object using just its ID. This routine
@@ -150,10 +150,10 @@ prototyped as follows:
.. index:: get class from object ID
.. index:: get node from object ID
.. index:: get index from object ID
-.. index:: rtems_object_id_get_api
-.. index:: rtems_object_id_get_class
-.. index:: rtems_object_id_get_node
-.. index:: rtems_object_id_get_index
+.. index:: rtems_object_id_get_api()
+.. index:: rtems_object_id_get_class()
+.. index:: rtems_object_id_get_node()
+.. index:: rtems_object_id_get_index()
.. code-block:: c