From 874297f3bea7761cf05ae26540b7a9e21d4a6e1d Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Fri, 16 Apr 2004 10:01:03 +0000 Subject: Remove stray white spaces. --- cpukit/posix/src/mutexdestroy.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'cpukit/posix/src/mutexdestroy.c') 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, -- cgit v1.2.3