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/pbarrierwait.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'cpukit/posix/src/pbarrierwait.c') diff --git a/cpukit/posix/src/pbarrierwait.c b/cpukit/posix/src/pbarrierwait.c index adfd40df1b..522c18ec84 100644 --- a/cpukit/posix/src/pbarrierwait.c +++ b/cpukit/posix/src/pbarrierwait.c @@ -37,14 +37,14 @@ int pthread_barrier_wait( ) { POSIX_Barrier_Control *the_barrier; - ISR_lock_Context lock_context; + Thread_queue_Context queue_context; Thread_Control *executing; if ( barrier == NULL ) { return EINVAL; } - the_barrier = _POSIX_Barrier_Get( barrier, &lock_context ); + the_barrier = _POSIX_Barrier_Get( barrier, &queue_context ); if ( the_barrier == NULL ) { return EINVAL; @@ -56,8 +56,7 @@ int pthread_barrier_wait( executing, true, 0, - NULL, - &lock_context + &queue_context ); return _POSIX_Barrier_Translate_core_barrier_return_code( executing->Wait.return_code -- cgit v1.2.3