summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/inline/rtems
diff options
context:
space:
mode:
authorJennifer Averett <Jennifer.Averett@OARcorp.com>1999-12-23 22:11:01 +0000
committerJennifer Averett <Jennifer.Averett@OARcorp.com>1999-12-23 22:11:01 +0000
commit2e97c01e3877aaefd6a644803ac90fa4e94d22b1 (patch)
treeabb9af209720ea99fd20255c5fee7f196e863ed8 /cpukit/posix/inline/rtems
parent+ Added check for name greater than PATH_MAX (diff)
downloadrtems-2e97c01e3877aaefd6a644803ac90fa4e94d22b1.tar.bz2
+ Added routine to remove from namespace.
Diffstat (limited to 'cpukit/posix/inline/rtems')
-rw-r--r--cpukit/posix/inline/rtems/posix/mqueue.inl13
1 files changed, 13 insertions, 0 deletions
diff --git a/cpukit/posix/inline/rtems/posix/mqueue.inl b/cpukit/posix/inline/rtems/posix/mqueue.inl
index 97b09d5c27..17156867b8 100644
--- a/cpukit/posix/inline/rtems/posix/mqueue.inl
+++ b/cpukit/posix/inline/rtems/posix/mqueue.inl
@@ -38,6 +38,19 @@ RTEMS_INLINE_ROUTINE void _POSIX_Message_queue_Free (
{
_Objects_Free( &_POSIX_Message_queue_Information, &the_mq->Object );
}
+
+/*PAGE
+ *
+ * _POSIX_Message_queue_Namespace_remove
+ */
+
+RTEMS_INLINE_ROUTINE void _POSIX_Message_queue_Namespace_remove (
+ POSIX_Message_queue_Control *the_mq
+)
+{
+ _Objects_Namespace_remove(
+ &_POSIX_Message_queue_Information, &the_mq->Object );
+}
/*PAGE
*