summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/corebarrierrelease.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-01 11:38:47 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-06 09:08:21 +0200
commit8f9658187a46f3c3ee3d7c7b68491fab5175a8fd (patch)
treec1887c2441887909201698b8d16b8cb2e8598188 /cpukit/score/src/corebarrierrelease.c
parentscore: Simplify _Thread_queue_Do_flush() (diff)
downloadrtems-8f9658187a46f3c3ee3d7c7b68491fab5175a8fd.tar.bz2
score: Rework MP thread queue callout support
The thread queue implementation was heavily reworked to support SMP. This broke the multiprocessing support of the thread queues. This is fixed by this patch. A thread proxy is unblocked due to three reasons 1) timeout, 2) request satisfaction, and 3) extraction. In case 1) no MPCI message must be sent. This is ensured via the _Thread_queue_MP_callout_do_nothing() callout set during _Thread_MP_Allocate_proxy(). In case 2) and 3) an MPCI message must be sent. In case we interrupt the blocking operation during _Thread_queue_Enqueue_critical(), then this message must be sent by the blocking thread. For this the new fields Thread_Proxy_control::thread_queue_callout and Thread_Proxy_control::thread_queue_id are used. Delete the individual API MP callout types and use Thread_queue_MP_callout throughout. This type is only defined in multiprocessing configurations. Prefix the multiprocessing parameters with mp_ to ease code review. Multiprocessing specific parameters are optional due to use of a similar macro pattern. There is no overhead for non-multiprocessing configurations.
Diffstat (limited to 'cpukit/score/src/corebarrierrelease.c')
-rw-r--r--cpukit/score/src/corebarrierrelease.c37
1 files changed, 15 insertions, 22 deletions
diff --git a/cpukit/score/src/corebarrierrelease.c b/cpukit/score/src/corebarrierrelease.c
index ba02301616..44580647bd 100644
--- a/cpukit/score/src/corebarrierrelease.c
+++ b/cpukit/score/src/corebarrierrelease.c
@@ -23,24 +23,12 @@
#include <rtems/score/objectimpl.h>
#include <rtems/score/threadqimpl.h>
-static Thread_Control *_CORE_barrier_Dequeue(
- CORE_barrier_Control *the_barrier
-)
-{
- return _Thread_queue_Dequeue(
- &the_barrier->Wait_queue,
- CORE_BARRIER_TQ_OPERATIONS
- );
-}
-
-uint32_t _CORE_barrier_Release(
- CORE_barrier_Control *the_barrier,
+uint32_t _CORE_barrier_Do_release(
+ CORE_barrier_Control *the_barrier
#if defined(RTEMS_MULTIPROCESSING)
- Objects_Id id,
- CORE_barrier_API_mp_support_callout api_barrier_mp_support
-#else
- Objects_Id id RTEMS_UNUSED,
- CORE_barrier_API_mp_support_callout api_barrier_mp_support RTEMS_UNUSED
+ ,
+ Thread_queue_MP_callout mp_callout,
+ Objects_Id mp_id
#endif
)
{
@@ -48,11 +36,16 @@ uint32_t _CORE_barrier_Release(
uint32_t count;
count = 0;
- while ( ( the_thread = _CORE_barrier_Dequeue( the_barrier ) ) ) {
-#if defined(RTEMS_MULTIPROCESSING)
- if ( !_Objects_Is_local_id( the_thread->Object.id ) )
- (*api_barrier_mp_support) ( the_thread, id );
-#endif
+ while (
+ (
+ the_thread = _Thread_queue_Dequeue(
+ &the_barrier->Wait_queue,
+ CORE_BARRIER_TQ_OPERATIONS,
+ mp_callout,
+ mp_id
+ )
+ )
+ ) {
count++;
}
the_barrier->number_of_waiting_threads = 0;