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/score/src/threadq.c | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'cpukit/score/src/threadq.c') diff --git a/cpukit/score/src/threadq.c b/cpukit/score/src/threadq.c index 372a07d64c..f8f18ed41f 100644 --- a/cpukit/score/src/threadq.c +++ b/cpukit/score/src/threadq.c @@ -79,22 +79,8 @@ RBTree_Compare_result _Thread_queue_Compare_priority( return ( left_prio > right_prio ) - ( left_prio < right_prio ); } -void _Thread_queue_Initialize( - Thread_queue_Control *the_thread_queue, - Thread_queue_Disciplines the_discipline -) +void _Thread_queue_Initialize( Thread_queue_Control *the_thread_queue ) { - const Thread_queue_Operations *operations; - - if ( the_discipline == THREAD_QUEUE_DISCIPLINE_PRIORITY ) { - operations = &_Thread_queue_Operations_priority; - } else { - _Assert( the_discipline == THREAD_QUEUE_DISCIPLINE_FIFO ); - operations = &_Thread_queue_Operations_FIFO; - } - - the_thread_queue->operations = operations; - _Thread_queue_Queue_initialize( &the_thread_queue->Queue ); #if defined(RTEMS_SMP) _SMP_lock_Stats_initialize( &the_thread_queue->Lock_stats, "Thread Queue" ); -- cgit v1.2.3