summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/mutexdestroy.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/mutexdestroy.c')
-rw-r--r--cpukit/posix/src/mutexdestroy.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/cpukit/posix/src/mutexdestroy.c b/cpukit/posix/src/mutexdestroy.c
index 1e31c48416..27ccbd9e3c 100644
--- a/cpukit/posix/src/mutexdestroy.c
+++ b/cpukit/posix/src/mutexdestroy.c
@@ -33,11 +33,7 @@ int pthread_mutex_destroy(
the_mutex = _POSIX_Mutex_Get( mutex, &location );
switch ( location ) {
-#if defined(RTEMS_MULTIPROCESSING)
- case OBJECTS_REMOTE:
-#endif
- case OBJECTS_ERROR:
- return EINVAL;
+
case OBJECTS_LOCAL:
/*
* XXX: There is an error for the mutex being locked
@@ -78,6 +74,13 @@ int pthread_mutex_destroy(
#endif
_Thread_Enable_dispatch();
return 0;
+
+#if defined(RTEMS_MULTIPROCESSING)
+ case OBJECTS_REMOTE:
+#endif
+ case OBJECTS_ERROR:
+ break;
}
- return POSIX_BOTTOM_REACHED();
+
+ return EINVAL;
}