summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/mutexdestroy.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-16 10:01:03 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-16 10:01:03 +0000
commit874297f3bea7761cf05ae26540b7a9e21d4a6e1d (patch)
tree3f514864e20beb9becc81d77053abec90d281a1a /cpukit/posix/src/mutexdestroy.c
parentRemove stray white spaces. (diff)
downloadrtems-874297f3bea7761cf05ae26540b7a9e21d4a6e1d.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/posix/src/mutexdestroy.c')
-rw-r--r--cpukit/posix/src/mutexdestroy.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpukit/posix/src/mutexdestroy.c b/cpukit/posix/src/mutexdestroy.c
index 51507b5b28..f4210148cd 100644
--- a/cpukit/posix/src/mutexdestroy.c
+++ b/cpukit/posix/src/mutexdestroy.c
@@ -31,7 +31,7 @@ int pthread_mutex_destroy(
{
register POSIX_Mutex_Control *the_mutex;
Objects_Locations location;
-
+
the_mutex = _POSIX_Mutex_Get( mutex, &location );
switch ( location ) {
case OBJECTS_REMOTE:
@@ -52,9 +52,9 @@ int pthread_mutex_destroy(
_Thread_Enable_dispatch();
return EBUSY;
}
-
+
_Objects_Close( &_POSIX_Mutex_Information, &the_mutex->Object );
-
+
_CORE_mutex_Flush(
&the_mutex->Mutex,
#if defined(RTEMS_MULTIPROCESSING)
@@ -64,14 +64,14 @@ int pthread_mutex_destroy(
#endif
EINVAL
);
-
+
_POSIX_Mutex_Free( the_mutex );
-
+
#if defined(RTEMS_MULTIPROCESSING)
if ( the_mutex->process_shared == PTHREAD_PROCESS_SHARED ) {
-
+
_Objects_MP_Close( &_POSIX_Mutex_Information, the_mutex->Object.id );
-
+
_POSIX_Mutex_MP_Send_process_packet(
POSIX_MUTEX_MP_ANNOUNCE_DELETE,
the_mutex->Object.id,