summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/semunlink.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/semunlink.c')
-rw-r--r--cpukit/posix/src/semunlink.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/cpukit/posix/src/semunlink.c b/cpukit/posix/src/semunlink.c
index 02fcdcab1b..2abc8f9435 100644
--- a/cpukit/posix/src/semunlink.c
+++ b/cpukit/posix/src/semunlink.c
@@ -18,17 +18,12 @@
#include "config.h"
#endif
-#include <semaphore.h>
-
#include <rtems/posix/semaphoreimpl.h>
-int sem_unlink(
- const char *name
-)
+int sem_unlink( const char *name )
{
POSIX_Semaphore_Control *the_semaphore;
Objects_Get_by_name_error error;
- Thread_queue_Context queue_context;
_Objects_Allocator_lock();
@@ -39,12 +34,8 @@ int sem_unlink(
}
_POSIX_Semaphore_Namespace_remove( the_semaphore );
-
- _ISR_lock_ISR_disable( &queue_context.Lock_context.Lock_context );
- _CORE_semaphore_Acquire_critical( &the_semaphore->Semaphore, &queue_context );
the_semaphore->linked = false;
- _POSIX_Semaphore_Delete( the_semaphore, &queue_context );
-
+ _POSIX_Semaphore_Delete( the_semaphore );
_Objects_Allocator_unlock();
return 0;
}