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. --- testsuites/sptests/spthreadq01/init.c | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'testsuites/sptests') diff --git a/testsuites/sptests/spthreadq01/init.c b/testsuites/sptests/spthreadq01/init.c index b0a342057a..6eef0c7454 100644 --- a/testsuites/sptests/spthreadq01/init.c +++ b/testsuites/sptests/spthreadq01/init.c @@ -18,11 +18,7 @@ const char rtems_test_name[] = "SPTHREADQ 1"; -static Thread_queue_Control fifo_queue = - THREAD_QUEUE_FIFO_INITIALIZER( fifo_queue, "FIFO" ); - -static Thread_queue_Control prio_queue = - THREAD_QUEUE_PRIORITY_INITIALIZER( prio_queue, "Prio" ); +static Thread_queue_Control queue = THREAD_QUEUE_INITIALIZER( "Queue" ); static rtems_task Init( rtems_task_argument ignored @@ -36,13 +32,7 @@ static rtems_task Init( _Thread_Enable_dispatch(); /* is there more to check? */ - rtems_test_assert( fifo_queue.Queue.heads == NULL ); - rtems_test_assert( fifo_queue.operations == &_Thread_queue_Operations_FIFO ); - - rtems_test_assert( prio_queue.Queue.heads == NULL ); - rtems_test_assert( - prio_queue.operations == &_Thread_queue_Operations_priority - ); + rtems_test_assert( queue.Queue.heads == NULL ); TEST_END(); rtems_test_exit(0); -- cgit v1.2.3