summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/score/objectmp.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-04-06 16:00:35 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-04-07 06:31:46 +0200
commit089e68181e70aa96802f8ebe0acf6af73c02f5ae (patch)
treead9615c3af96458cea8d9c1b19645b1724bc9cb5 /cpukit/include/rtems/score/objectmp.h
parentscore: Fix internal error status number (diff)
downloadrtems-089e68181e70aa96802f8ebe0acf6af73c02f5ae.tar.bz2
score: Replace Objects_Name_or_id_lookup_errors
Replace Objects_Name_or_id_lookup_errors with new Status_Control codes. Get rid of the _Status_Object_name_errors_to_status lookup table.
Diffstat (limited to 'cpukit/include/rtems/score/objectmp.h')
-rw-r--r--cpukit/include/rtems/score/objectmp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/include/rtems/score/objectmp.h b/cpukit/include/rtems/score/objectmp.h
index 4f41fefe40..9107e2b3b6 100644
--- a/cpukit/include/rtems/score/objectmp.h
+++ b/cpukit/include/rtems/score/objectmp.h
@@ -143,12 +143,12 @@ void _Objects_MP_Close (
* @param nodes_to_search Indicates the set of nodes to search.
* @param[out] the_id will contain the Id of the object if found.
*
- * @retval OBJECTS_NAME_OR_ID_LOOKUP_SUCCESSFUL The lookup was successful.
- * @retval OBJECTS_INVALID_NODE The number of nodes is bigger than the
+ * @retval STATUS_SUCCESSFUL The lookup was successful.
+ * @retval STATUS_INVALID_NODE The number of nodes is bigger than the
* objects maximum nodes value.
- * @retval OBJECTS_INVALID_NAME There is no global object with this name.
+ * @retval STATUS_INVALID_NAME There is no global object with this name.
*/
-Objects_Name_or_id_lookup_errors _Objects_MP_Global_name_search (
+Status_Control _Objects_MP_Global_name_search (
const Objects_Information *information,
Objects_Name the_name,
uint32_t nodes_to_search,