summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/score/objectimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-12-10 10:46:52 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-02-12 09:08:40 +0100
commit36e59b2bbc8737c4ba1b93ac0f695528a36844c9 (patch)
tree0757387b86637fd42e78dd1af33888d3fde71836 /cpukit/include/rtems/score/objectimpl.h
parentscore: Inline _Objects_Namespace_remove_u32() (diff)
downloadrtems-36e59b2bbc8737c4ba1b93ac0f695528a36844c9.tar.bz2
score: _Objects_Extend_information()
Return block index in _Objects_Extend_information(). This allows to customize the objects information extend. Update #3835.
Diffstat (limited to 'cpukit/include/rtems/score/objectimpl.h')
-rw-r--r--cpukit/include/rtems/score/objectimpl.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpukit/include/rtems/score/objectimpl.h b/cpukit/include/rtems/score/objectimpl.h
index 87d29cb087..d4d6347ea8 100644
--- a/cpukit/include/rtems/score/objectimpl.h
+++ b/cpukit/include/rtems/score/objectimpl.h
@@ -91,8 +91,11 @@ _Objects_Information_table[ OBJECTS_APIS_LAST + 1 ];
* @brief Extends an object class information record.
*
* @param information Points to an object class information block.
+ *
+ * @retval 0 The extend operation failed.
+ * @retval block The block index of the new objects block.
*/
-void _Objects_Extend_information(
+Objects_Maximum _Objects_Extend_information(
Objects_Information *information
);