From 5b0d2c1965e1dab2915231866aaa5623ced66330 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 3 Mar 2016 13:37:14 +0100 Subject: score: Add _SMP_Before_multitasking_action() The use case for this is the Cortex-A9 MPCore which has per-processor registers (only accessible by a particular processor) for the global timer used by the clock driver. This might be useful for other drivers as well. Update #2554. --- cpukit/score/src/smpmulticastaction.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/score/src/smpmulticastaction.c') diff --git a/cpukit/score/src/smpmulticastaction.c b/cpukit/score/src/smpmulticastaction.c index 2e592627d7..d5d00641e8 100644 --- a/cpukit/score/src/smpmulticastaction.c +++ b/cpukit/score/src/smpmulticastaction.c @@ -17,7 +17,7 @@ typedef struct { Chain_Node Node; - SMP_Multicast_action_handler handler; + SMP_Action_handler handler; void *arg; cpu_set_t *recipients; size_t setsize; @@ -94,7 +94,7 @@ _SMP_Multicast_actions_try_process( void ) void _SMP_Multicast_action( const size_t setsize, const cpu_set_t *cpus, - SMP_Multicast_action_handler handler, + SMP_Action_handler handler, void *arg ) { -- cgit v1.2.3