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/condsignalsupp.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cpukit/posix/src/condsignalsupp.c') diff --git a/cpukit/posix/src/condsignalsupp.c b/cpukit/posix/src/condsignalsupp.c index 45df6c6056..5fad8e0ead 100644 --- a/cpukit/posix/src/condsignalsupp.c +++ b/cpukit/posix/src/condsignalsupp.c @@ -24,7 +24,7 @@ * A support routine which implements guts of the broadcast and single task * wake up version of the "signal" operation. */ - + int _POSIX_Condition_variables_Signal_support( pthread_cond_t *cond, boolean is_broadcast @@ -33,7 +33,7 @@ int _POSIX_Condition_variables_Signal_support( register POSIX_Condition_variables_Control *the_cond; Objects_Locations location; Thread_Control *the_thread; - + the_cond = _POSIX_Condition_variables_Get( cond, &location ); switch ( location ) { case OBJECTS_REMOTE: @@ -46,8 +46,8 @@ int _POSIX_Condition_variables_Signal_support( case OBJECTS_ERROR: return EINVAL; case OBJECTS_LOCAL: - - do { + + do { the_thread = _Thread_queue_Dequeue( &the_cond->Wait_queue ); if ( !the_thread ) the_cond->Mutex = POSIX_CONDITION_VARIABLES_NO_MUTEX; -- cgit v1.2.3