From 631b3c8967a329cdd53e54365e4e4c0aa93a4251 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 23 May 2016 11:40:18 +0200 Subject: score: Move thread queue MP callout to context Drop the multiprocessing (MP) dependent callout parameter from the thread queue extract, dequeue, flush and unblock methods. Merge this parameter with the lock context into new structure Thread_queue_Context. This helps to gets rid of the conditionally compiled method call helpers. --- cpukit/posix/src/semclose.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cpukit/posix/src/semclose.c') diff --git a/cpukit/posix/src/semclose.c b/cpukit/posix/src/semclose.c index 3f18ff1efe..ebcf7a26b3 100644 --- a/cpukit/posix/src/semclose.c +++ b/cpukit/posix/src/semclose.c @@ -27,10 +27,10 @@ int sem_close( ) { POSIX_Semaphore_Control *the_semaphore; - ISR_lock_Context lock_context; + Thread_queue_Context queue_context; _Objects_Allocator_lock(); - the_semaphore = _POSIX_Semaphore_Get( sem, &lock_context ); + the_semaphore = _POSIX_Semaphore_Get( sem, &queue_context ); if ( the_semaphore == NULL ) { _Objects_Allocator_unlock(); @@ -39,10 +39,10 @@ int sem_close( _CORE_semaphore_Acquire_critical( &the_semaphore->Semaphore, - &lock_context + &queue_context ); the_semaphore->open_count -= 1; - _POSIX_Semaphore_Delete( the_semaphore, &lock_context ); + _POSIX_Semaphore_Delete( the_semaphore, &queue_context ); _Objects_Allocator_unlock(); return 0; -- cgit v1.2.3