summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/objectmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/include/rtems/score/objectmp.h')
-rw-r--r--cpukit/score/include/rtems/score/objectmp.h26
1 files changed, 17 insertions, 9 deletions
diff --git a/cpukit/score/include/rtems/score/objectmp.h b/cpukit/score/include/rtems/score/objectmp.h
index 4748c61e2b..1ef15b3c72 100644
--- a/cpukit/score/include/rtems/score/objectmp.h
+++ b/cpukit/score/include/rtems/score/objectmp.h
@@ -1,6 +1,8 @@
/**
* @file rtems/score/objectmp.h
*
+ * @brief Data Associated with the Manipulation of Global RTEMS Objects
+ *
* This include file contains all the constants and structures associated
* with the manipulation of Global RTEMS Objects.
*/
@@ -47,7 +49,8 @@ typedef struct {
} Objects_MP_Control;
/**
- * @brief Objects MP Handler initialization
+ * @brief Intializes the inactive global object chain
+ * based on the maximum number of global objects configured.
*
* This routine intializes the inactive global object chain
* based on the maximum number of global objects configured.
@@ -55,7 +58,8 @@ typedef struct {
void _Objects_MP_Handler_initialization(void);
/**
- * @brief Objects MP Handler Early Initialization
+ * @brief Intializes the global object node number
+ * used in the ID field of all objects.
*
* This routine intializes the global object node number
* used in the ID field of all objects.
@@ -63,7 +67,8 @@ void _Objects_MP_Handler_initialization(void);
void _Objects_MP_Handler_early_initialization(void);
/**
- * @brief Objects MP Open
+ * @brief Place the specified global object in the
+ * specified information table.
*
* This routine place the specified global object in the
* specified information table.
@@ -85,7 +90,8 @@ void _Objects_MP_Open (
);
/**
- * @brief Objects MP Allocate and open
+ * @brief Allocates a global object control block
+ * and places it in the specified information table.
*
* This routine allocates a global object control block
* and places it in the specified information table. If the
@@ -110,7 +116,7 @@ bool _Objects_MP_Allocate_and_open (
);
/**
- * @brief Objects MP Close
+ * @brief Removes a global object from the specified information table.
*
* This routine removes a global object from the specified
* information table and deallocates the global object control block.
@@ -121,7 +127,8 @@ void _Objects_MP_Close (
);
/**
- * @brief Objects MP Global name search
+ * @brief Look for the object with the_name in the global
+ * object tables indicated by information.
*
* This routine looks for the object with the_name in the global
* object tables indicated by information. It returns the ID of the
@@ -133,7 +140,7 @@ void _Objects_MP_Close (
* @param[in] nodes_to_search indicates the set of nodes to search.
* @param[in] the_id will contain the Id of the object if found.
*
- * @return This method returns one of the
+ * @retval This method returns one of the
* @ref Objects_Name_or_id_lookup_errors. If successful, @a the_id
* will contain the Id of the object.
*/
@@ -145,7 +152,8 @@ Objects_Name_or_id_lookup_errors _Objects_MP_Global_name_search (
);
/**
- * @brief Objects MP Is remote
+ * @brief Searches the Global Object Table managed
+ * by information for the object indicated by ID.
*
* This function searches the Global Object Table managed
* by information for the object indicated by ID. If the object
@@ -159,7 +167,7 @@ Objects_Name_or_id_lookup_errors _Objects_MP_Global_name_search (
* @param[in] location will contain the location of the object.
* @param[in] the_object will contain a pointer to the object.
*
- * @return This method fills in @a location to indicate successful location
+ * @retval This method fills in @a location to indicate successful location
* of the object or error. On success, @a the_object will be
* filled in.
*/