From 1e1a91ed11458ddbb27b94d0001d8f0fc2ef7a97 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 23 Mar 2016 10:01:31 +0100 Subject: score: Remove Thread_queue_Queue::operations field Remove the Thread_queue_Queue::operations field to reduce the size of this structure. Add a thread queue operations parameter to the _Thread_queue_First(), _Thread_queue_First_locked(), _Thread_queue_Enqueue(), _Thread_queue_Dequeue() and _Thread_queue_Flush() functions. This is a preparation patch to reduce the size of several synchronization objects. --- cpukit/posix/src/prwlockdestroy.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'cpukit/posix/src/prwlockdestroy.c') diff --git a/cpukit/posix/src/prwlockdestroy.c b/cpukit/posix/src/prwlockdestroy.c index f3e08add06..a675b90757 100644 --- a/cpukit/posix/src/prwlockdestroy.c +++ b/cpukit/posix/src/prwlockdestroy.c @@ -49,7 +49,12 @@ int pthread_rwlock_destroy( /* * If there is at least one thread waiting, then do not delete it. */ - if ( _Thread_queue_First( &the_rwlock->RWLock.Wait_queue ) != NULL ) { + if ( + _Thread_queue_First( + &the_rwlock->RWLock.Wait_queue, + CORE_RWLOCK_TQ_OPERATIONS + ) != NULL + ) { _Objects_Put( &the_rwlock->Object ); _Objects_Allocator_unlock(); return EBUSY; -- cgit v1.2.3