summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/inline/rtems
diff options
context:
space:
mode:
authorJennifer Averett <Jennifer.Averett@OARcorp.com>1999-11-18 19:41:34 +0000
committerJennifer Averett <Jennifer.Averett@OARcorp.com>1999-11-18 19:41:34 +0000
commitc9ae846b0ef9866f17d35764024046166a3ee663 (patch)
tree77566a1e8574cf195d26f1978f4e6eb48a6b80eb /cpukit/posix/inline/rtems
parentRemoved IT_COUNT since it was not used. (diff)
downloadrtems-c9ae846b0ef9866f17d35764024046166a3ee663.tar.bz2
Added a routine to remove a semaphore name from its namespace.
Diffstat (limited to 'cpukit/posix/inline/rtems')
-rw-r--r--cpukit/posix/inline/rtems/posix/semaphore.inl15
1 files changed, 15 insertions, 0 deletions
diff --git a/cpukit/posix/inline/rtems/posix/semaphore.inl b/cpukit/posix/inline/rtems/posix/semaphore.inl
index 57badad5a9..2d9ad70602 100644
--- a/cpukit/posix/inline/rtems/posix/semaphore.inl
+++ b/cpukit/posix/inline/rtems/posix/semaphore.inl
@@ -41,6 +41,21 @@ RTEMS_INLINE_ROUTINE void _POSIX_Semaphore_Free (
/*PAGE
*
+ * _POSIX_Semaphore_Namespace_remove
+ */
+
+RTEMS_INLINE_ROUTINE void _POSIX_Semaphore_Namespace_remove (
+ POSIX_Semaphore_Control *the_semaphore
+)
+{
+ _Objects_Namespace_remove(
+ &_POSIX_Semaphore_Information, &the_semaphore->Object );
+}
+
+
+
+/*PAGE
+ *
* _POSIX_Semaphore_Get
*/