summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/semaphoredeletesupp.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/semaphoredeletesupp.c')
-rw-r--r--cpukit/posix/src/semaphoredeletesupp.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/cpukit/posix/src/semaphoredeletesupp.c b/cpukit/posix/src/semaphoredeletesupp.c
index 04f0d1ad93..9e136b7f37 100644
--- a/cpukit/posix/src/semaphoredeletesupp.c
+++ b/cpukit/posix/src/semaphoredeletesupp.c
@@ -26,6 +26,18 @@ void _POSIX_Semaphore_Delete(
)
{
if ( !the_semaphore->linked && !the_semaphore->open_count ) {
+ _Objects_Close( &_POSIX_Semaphore_Information, &the_semaphore->Object );
+
+ _CORE_semaphore_Flush(
+ &the_semaphore->Semaphore,
+#if defined(RTEMS_MULTIPROCESSING)
+ _POSIX_Semaphore_MP_Send_object_was_deleted,
+#else
+ NULL,
+#endif
+ -1 /* XXX should also seterrno -> EINVAL */
+ );
+
_POSIX_Semaphore_Free( the_semaphore );
#if defined(RTEMS_MULTIPROCESSING)