From e41308eab8ae4505844d8e499664424f8c7f2bd1 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 22 Aug 2016 10:58:34 +0200 Subject: score: Introduce Thread_queue_Lock_context Introduce Thread_queue_Lock_context to contain the context necessary for thread queue lock and thread wait lock acquire/release operations to reduce the Thread_Control size. --- cpukit/score/src/futex.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/score/src/futex.c') diff --git a/cpukit/score/src/futex.c b/cpukit/score/src/futex.c index 840101a703..1989445c73 100644 --- a/cpukit/score/src/futex.c +++ b/cpukit/score/src/futex.c @@ -55,12 +55,12 @@ static Thread_Control *_Futex_Queue_acquire( { Thread_Control *executing; - _ISR_lock_ISR_disable( &queue_context->Lock_context ); + _ISR_lock_ISR_disable( &queue_context->Lock_context.Lock_context ); executing = _Thread_Executing; _Thread_queue_Queue_acquire_critical( &futex->Queue.Queue, &executing->Potpourri_stats, - &queue_context->Lock_context + &queue_context->Lock_context.Lock_context ); return executing; @@ -73,7 +73,7 @@ static void _Futex_Queue_release( { _Thread_queue_Queue_release( &futex->Queue.Queue, - &queue_context->Lock_context + &queue_context->Lock_context.Lock_context ); } -- cgit v1.2.3