From 95b76bc02b5e5e9a3dacff3f3839e724b14141f5 Mon Sep 17 00:00:00 2001 From: Mark Johannes Date: Tue, 13 Aug 1996 21:10:06 +0000 Subject: pthread_codn_destroy: EBUSY case moved and uses Thread_queue_First --- cpukit/posix/src/cond.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/posix/src/cond.c') diff --git a/cpukit/posix/src/cond.c b/cpukit/posix/src/cond.c index e7e03c6e6d..89002876b5 100644 --- a/cpukit/posix/src/cond.c +++ b/cpukit/posix/src/cond.c @@ -256,14 +256,14 @@ int pthread_cond_destroy( return EINVAL; case OBJECTS_LOCAL: + if ( _Thread_queue_First( &the_cond->Wait_queue ) ) + return EBUSY; + _Objects_Close( &_POSIX_Condition_variables_Information, &the_cond->Object ); - if ( _Thread_queue_First( &the_cond->Wait_queue ) ) - return EBUSY; - _POSIX_Condition_variables_Free( the_cond ); if ( the_cond->process_shared == PTHREAD_PROCESS_SHARED ) { -- cgit v1.2.3