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/psignal.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'cpukit/posix/src/psignal.c') diff --git a/cpukit/posix/src/psignal.c b/cpukit/posix/src/psignal.c index 08b049bc46..18aad9667e 100644 --- a/cpukit/posix/src/psignal.c +++ b/cpukit/posix/src/psignal.c @@ -92,7 +92,8 @@ const struct sigaction _POSIX_signals_Default_vectors[ SIG_ARRAY_MAX ] = { struct sigaction _POSIX_signals_Vectors[ SIG_ARRAY_MAX ]; -Thread_queue_Control _POSIX_signals_Wait_queue; +Thread_queue_Control _POSIX_signals_Wait_queue = + THREAD_QUEUE_INITIALIZER( "POSIX Signals" ); Chain_Control _POSIX_signals_Inactive_siginfo; Chain_Control _POSIX_signals_Siginfo[ SIG_ARRAY_MAX ]; @@ -185,14 +186,6 @@ static void _POSIX_signals_Manager_Initialization(void) */ sigemptyset( &_POSIX_signals_Pending ); - /* - * Initialize the queue we use to block for signals - */ - _Thread_queue_Initialize( - &_POSIX_signals_Wait_queue, - THREAD_QUEUE_DISCIPLINE_FIFO - ); - /* XXX status codes */ /* -- cgit v1.2.3