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/prwlockrdlock.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/posix/src/prwlockrdlock.c') diff --git a/cpukit/posix/src/prwlockrdlock.c b/cpukit/posix/src/prwlockrdlock.c index 3459399c6b..e59aaf9adb 100644 --- a/cpukit/posix/src/prwlockrdlock.c +++ b/cpukit/posix/src/prwlockrdlock.c @@ -25,10 +25,10 @@ int pthread_rwlock_rdlock( ) { POSIX_RWLock_Control *the_rwlock; - ISR_lock_Context lock_context; + Thread_queue_Context queue_context; Thread_Control *executing; - the_rwlock = _POSIX_RWLock_Get( rwlock, &lock_context ); + the_rwlock = _POSIX_RWLock_Get( rwlock, &queue_context ); if ( the_rwlock == NULL ) { return EINVAL; @@ -40,7 +40,7 @@ int pthread_rwlock_rdlock( executing, true, /* we are willing to wait forever */ 0, - &lock_context + &queue_context ); return _POSIX_RWLock_Translate_core_RWLock_return_code( (CORE_RWLock_Status) executing->Wait.return_code -- cgit v1.2.3