From 0e1d11f3f0f02768ced350fcb53056c55f0c545b Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 27 May 2016 13:26:53 +0200 Subject: score: Add _Thread_queue_Context_set_MP_callout() Add _Thread_queue_Context_set_MP_callout() to simplify _Thread_queue_Context_initialize(). This makes it possible to more easily add additional fields to Thread_queue_Context. --- cpukit/rtems/include/rtems/rtems/semimpl.h | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) (limited to 'cpukit/rtems/include/rtems/rtems/semimpl.h') diff --git a/cpukit/rtems/include/rtems/rtems/semimpl.h b/cpukit/rtems/include/rtems/rtems/semimpl.h index 21e16e99d0..a498927691 100644 --- a/cpukit/rtems/include/rtems/rtems/semimpl.h +++ b/cpukit/rtems/include/rtems/rtems/semimpl.h @@ -58,16 +58,12 @@ RTEMS_INLINE_ROUTINE void _Semaphore_Free ( _Objects_Free( &_Semaphore_Information, &the_semaphore->Object ); } -RTEMS_INLINE_ROUTINE Semaphore_Control *_Semaphore_Do_get( - Objects_Id id, - Thread_queue_Context *queue_context -#if defined(RTEMS_MULTIPROCESSING) - , - Thread_queue_MP_callout mp_callout -#endif +RTEMS_INLINE_ROUTINE Semaphore_Control *_Semaphore_Get( + Objects_Id id, + Thread_queue_Context *queue_context ) { - _Thread_queue_Context_initialize( queue_context, mp_callout ); + _Thread_queue_Context_initialize( queue_context ); return (Semaphore_Control *) _Objects_Get( id, &queue_context->Lock_context, @@ -75,14 +71,6 @@ RTEMS_INLINE_ROUTINE Semaphore_Control *_Semaphore_Do_get( ); } -#if defined(RTEMS_MULTIPROCESSING) - #define _Semaphore_Get( id, queue_context, mp_callout ) \ - _Semaphore_Do_get( id, queue_context, mp_callout ) -#else - #define _Semaphore_Get( id, queue_context, mp_callout ) \ - _Semaphore_Do_get( id, queue_context ) -#endif - #ifdef __cplusplus } #endif -- cgit v1.2.3