summaryrefslogtreecommitdiff
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.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/cpukit/posix/src/semunlink.c b/cpukit/posix/src/semunlink.c
index 53475f1527..d988606bb5 100644
--- a/cpukit/posix/src/semunlink.c
+++ b/cpukit/posix/src/semunlink.c
@@ -46,28 +46,11 @@ int sem_unlink(
rtems_set_errno_and_return_minus_one( status );
}
- /*
- * Don't support unlinking a remote semaphore.
- */
-
-#if defined(RTEMS_MULTIPROCESSING)
- if ( !_Objects_Is_local_id((Objects_Id)the_semaphore_id) ) {
- _Thread_Enable_dispatch();
- rtems_set_errno_and_return_minus_one( ENOSYS );
- }
-#endif
-
the_semaphore = (POSIX_Semaphore_Control *) _Objects_Get_local_object(
&_POSIX_Semaphore_Information,
_Objects_Get_index( the_semaphore_id )
);
-#if defined(RTEMS_MULTIPROCESSING)
- if ( the_semaphore->process_shared == PTHREAD_PROCESS_SHARED ) {
- _Objects_MP_Close( &_POSIX_Semaphore_Information, the_semaphore_id );
- }
-#endif
-
the_semaphore->linked = FALSE;
_POSIX_Semaphore_Namespace_remove( the_semaphore );
_POSIX_Semaphore_Delete( the_semaphore );