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/include/rtems/score/corebarrierimpl.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cpukit/score/include/rtems/score/corebarrierimpl.h') diff --git a/cpukit/score/include/rtems/score/corebarrierimpl.h b/cpukit/score/include/rtems/score/corebarrierimpl.h index e8b330dcb6..87ea545747 100644 --- a/cpukit/score/include/rtems/score/corebarrierimpl.h +++ b/cpukit/score/include/rtems/score/corebarrierimpl.h @@ -62,6 +62,8 @@ typedef enum { */ #define CORE_BARRIER_STATUS_LAST CORE_BARRIER_TIMEOUT +#define CORE_BARRIER_TQ_OPERATIONS &_Thread_queue_Operations_FIFO + /** * The following type defines the callout which the API provides * to support global/multiprocessor operations on barriers. @@ -150,6 +152,7 @@ uint32_t _CORE_barrier_Release( #define _CORE_barrier_Flush( _the_barrier, _remote_extract_callout, _status) \ _Thread_queue_Flush( \ &((_the_barrier)->Wait_queue), \ + CORE_BARRIER_TQ_OPERATIONS, \ (_remote_extract_callout), \ (_status) \ ) -- cgit v1.2.3