summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/inline/rtems/score/object.inl
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/score/inline/rtems/score/object.inl')
-rw-r--r--c/src/exec/score/inline/rtems/score/object.inl17
1 files changed, 17 insertions, 0 deletions
diff --git a/c/src/exec/score/inline/rtems/score/object.inl b/c/src/exec/score/inline/rtems/score/object.inl
index b4de63034c..1b435b4d4f 100644
--- a/c/src/exec/score/inline/rtems/score/object.inl
+++ b/c/src/exec/score/inline/rtems/score/object.inl
@@ -269,5 +269,22 @@ RTEMS_INLINE_ROUTINE void _Objects_Close(
_Objects_Clear_name( the_object->name, information->name_length );
}
+/*PAGE
+ *
+ * _Objects_Namespace_remove
+ *
+ * DESCRIPTION:
+ *
+ * This function removes the_object from the namespace.
+ */
+
+RTEMS_INLINE_ROUTINE void _Objects_Namespace_remove(
+ Objects_Information *information,
+ Objects_Control *the_object
+)
+{
+ _Objects_Clear_name( the_object->name, information->name_length );
+}
+
#endif
/* end of include file */