forked from Imagelibrary/rtems
rtems: Use thread state lock for signals
This commit is contained in:
@@ -22,7 +22,6 @@
|
|||||||
#ifndef _RTEMS_RTEMS_ASR_H
|
#ifndef _RTEMS_RTEMS_ASR_H
|
||||||
#define _RTEMS_RTEMS_ASR_H
|
#define _RTEMS_RTEMS_ASR_H
|
||||||
|
|
||||||
#include <rtems/score/isrlock.h>
|
|
||||||
#include <rtems/rtems/modes.h>
|
#include <rtems/rtems/modes.h>
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
@@ -75,8 +74,6 @@ typedef struct {
|
|||||||
rtems_signal_set signals_pending;
|
rtems_signal_set signals_pending;
|
||||||
/** This field indicates if nest level of signals being processed */
|
/** This field indicates if nest level of signals being processed */
|
||||||
uint32_t nest_level;
|
uint32_t nest_level;
|
||||||
/** Lock to protect this structure */
|
|
||||||
ISR_LOCK_MEMBER( Lock )
|
|
||||||
} ASR_Information;
|
} ASR_Information;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@@ -19,6 +19,8 @@
|
|||||||
|
|
||||||
#include <rtems/rtems/asr.h>
|
#include <rtems/rtems/asr.h>
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
@@ -40,48 +42,7 @@ RTEMS_INLINE_ROUTINE void _ASR_Initialize (
|
|||||||
ASR_Information *asr
|
ASR_Information *asr
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
asr->is_enabled = false;
|
memset(asr, 0, sizeof(*asr));
|
||||||
asr->handler = NULL;
|
|
||||||
asr->mode_set = RTEMS_DEFAULT_MODES;
|
|
||||||
asr->signals_posted = 0;
|
|
||||||
asr->signals_pending = 0;
|
|
||||||
asr->nest_level = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
RTEMS_INLINE_ROUTINE void _ASR_Create( ASR_Information *asr )
|
|
||||||
{
|
|
||||||
_ISR_lock_Initialize( &asr->Lock, "ASR" );
|
|
||||||
RTEMS_STATIC_ASSERT( RTEMS_DEFAULT_MODES == 0, _ASR_Create_mode_set );
|
|
||||||
}
|
|
||||||
|
|
||||||
RTEMS_INLINE_ROUTINE void _ASR_Destroy( ASR_Information *asr )
|
|
||||||
{
|
|
||||||
_ISR_lock_Destroy( &asr->Lock );
|
|
||||||
}
|
|
||||||
|
|
||||||
RTEMS_INLINE_ROUTINE void _ASR_Acquire_critical(
|
|
||||||
ASR_Information *asr,
|
|
||||||
ISR_lock_Context *lock_context
|
|
||||||
)
|
|
||||||
{
|
|
||||||
_ISR_lock_Acquire( &asr->Lock, lock_context );
|
|
||||||
}
|
|
||||||
|
|
||||||
RTEMS_INLINE_ROUTINE void _ASR_Acquire(
|
|
||||||
ASR_Information *asr,
|
|
||||||
ISR_lock_Context *lock_context
|
|
||||||
)
|
|
||||||
{
|
|
||||||
_ISR_lock_ISR_disable( lock_context );
|
|
||||||
_ASR_Acquire_critical( asr, lock_context );
|
|
||||||
}
|
|
||||||
|
|
||||||
RTEMS_INLINE_ROUTINE void _ASR_Release(
|
|
||||||
ASR_Information *asr,
|
|
||||||
ISR_lock_Context *lock_context
|
|
||||||
)
|
|
||||||
{
|
|
||||||
_ISR_lock_Release_and_ISR_enable( &asr->Lock, lock_context );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -100,13 +61,10 @@ RTEMS_INLINE_ROUTINE bool _ASR_Is_null_handler (
|
|||||||
RTEMS_INLINE_ROUTINE rtems_signal_set _ASR_Swap_signals( ASR_Information *asr )
|
RTEMS_INLINE_ROUTINE rtems_signal_set _ASR_Swap_signals( ASR_Information *asr )
|
||||||
{
|
{
|
||||||
rtems_signal_set new_signals_posted;
|
rtems_signal_set new_signals_posted;
|
||||||
ISR_lock_Context lock_context;
|
|
||||||
|
|
||||||
_ASR_Acquire( asr, &lock_context );
|
new_signals_posted = asr->signals_pending;
|
||||||
new_signals_posted = asr->signals_pending;
|
asr->signals_pending = asr->signals_posted;
|
||||||
asr->signals_pending = asr->signals_posted;
|
asr->signals_posted = new_signals_posted;
|
||||||
asr->signals_posted = new_signals_posted;
|
|
||||||
_ASR_Release( asr, &lock_context );
|
|
||||||
|
|
||||||
return new_signals_posted;
|
return new_signals_posted;
|
||||||
}
|
}
|
||||||
@@ -124,12 +82,9 @@ RTEMS_INLINE_ROUTINE rtems_signal_set _ASR_Get_posted_signals(
|
|||||||
)
|
)
|
||||||
{
|
{
|
||||||
rtems_signal_set signal_set;
|
rtems_signal_set signal_set;
|
||||||
ISR_lock_Context lock_context;
|
|
||||||
|
|
||||||
_ASR_Acquire( asr, &lock_context );
|
signal_set = asr->signals_posted;
|
||||||
signal_set = asr->signals_posted;
|
asr->signals_posted = 0;
|
||||||
asr->signals_posted = 0;
|
|
||||||
_ASR_Release( asr, &lock_context );
|
|
||||||
|
|
||||||
return signal_set;
|
return signal_set;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,6 +25,8 @@
|
|||||||
#include <rtems/score/assert.h>
|
#include <rtems/score/assert.h>
|
||||||
#include <rtems/score/threadimpl.h>
|
#include <rtems/score/threadimpl.h>
|
||||||
|
|
||||||
|
RTEMS_STATIC_ASSERT( RTEMS_DEFAULT_MODES == 0, _ASR_Create_mode_set );
|
||||||
|
|
||||||
void _Signal_Action_handler(
|
void _Signal_Action_handler(
|
||||||
Thread_Control *executing,
|
Thread_Control *executing,
|
||||||
Thread_Action *action,
|
Thread_Action *action,
|
||||||
@@ -37,19 +39,17 @@ void _Signal_Action_handler(
|
|||||||
Modes_Control prev_mode;
|
Modes_Control prev_mode;
|
||||||
|
|
||||||
(void) action;
|
(void) action;
|
||||||
_Thread_State_release( executing, lock_context );
|
|
||||||
|
|
||||||
api = executing->API_Extensions[ THREAD_API_RTEMS ];
|
|
||||||
if ( !api )
|
|
||||||
return;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Signal Processing
|
* Signal Processing
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
api = executing->API_Extensions[ THREAD_API_RTEMS ];
|
||||||
asr = &api->Signal;
|
asr = &api->Signal;
|
||||||
signal_set = _ASR_Get_posted_signals( asr );
|
signal_set = _ASR_Get_posted_signals( asr );
|
||||||
|
|
||||||
|
_Thread_State_release( executing, lock_context );
|
||||||
|
|
||||||
if ( signal_set == 0 ) {
|
if ( signal_set == 0 ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -73,13 +73,10 @@ rtems_status_code rtems_signal_catch(
|
|||||||
ASR_Information *asr;
|
ASR_Information *asr;
|
||||||
ISR_lock_Context lock_context;
|
ISR_lock_Context lock_context;
|
||||||
|
|
||||||
_ISR_lock_ISR_disable( &lock_context );
|
executing = _Thread_State_acquire_for_executing( &lock_context );
|
||||||
executing = _Thread_Executing;
|
|
||||||
api = executing->API_Extensions[ THREAD_API_RTEMS ];
|
api = executing->API_Extensions[ THREAD_API_RTEMS ];
|
||||||
asr = &api->Signal;
|
asr = &api->Signal;
|
||||||
|
|
||||||
_ASR_Acquire_critical( asr, &lock_context );
|
|
||||||
|
|
||||||
if ( !_ASR_Is_null_handler( asr_handler ) ) {
|
if ( !_ASR_Is_null_handler( asr_handler ) ) {
|
||||||
asr->mode_set = mode_set;
|
asr->mode_set = mode_set;
|
||||||
asr->handler = asr_handler;
|
asr->handler = asr_handler;
|
||||||
@@ -87,7 +84,7 @@ rtems_status_code rtems_signal_catch(
|
|||||||
_ASR_Initialize( asr );
|
_ASR_Initialize( asr );
|
||||||
}
|
}
|
||||||
|
|
||||||
_ASR_Release( asr, &lock_context );
|
_Thread_State_release( executing, &lock_context );
|
||||||
return RTEMS_SUCCESSFUL;
|
return RTEMS_SUCCESSFUL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -51,10 +51,10 @@ rtems_status_code rtems_signal_send(
|
|||||||
api = the_thread->API_Extensions[ THREAD_API_RTEMS ];
|
api = the_thread->API_Extensions[ THREAD_API_RTEMS ];
|
||||||
asr = &api->Signal;
|
asr = &api->Signal;
|
||||||
|
|
||||||
_ASR_Acquire_critical( asr, &lock_context );
|
_Thread_State_acquire_critical( the_thread, &lock_context );
|
||||||
|
|
||||||
if ( _ASR_Is_null_handler( asr->handler ) ) {
|
if ( _ASR_Is_null_handler( asr->handler ) ) {
|
||||||
_ASR_Release( asr, &lock_context );
|
_Thread_State_release( the_thread, &lock_context );
|
||||||
return RTEMS_NOT_DEFINED;
|
return RTEMS_NOT_DEFINED;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -62,8 +62,6 @@ rtems_status_code rtems_signal_send(
|
|||||||
Per_CPU_Control *cpu_self;
|
Per_CPU_Control *cpu_self;
|
||||||
|
|
||||||
_ASR_Post_signals( signal_set, &asr->signals_posted );
|
_ASR_Post_signals( signal_set, &asr->signals_posted );
|
||||||
_ASR_Release( asr, &lock_context );
|
|
||||||
_Thread_State_acquire( the_thread, &lock_context );
|
|
||||||
_Thread_Add_post_switch_action(
|
_Thread_Add_post_switch_action(
|
||||||
the_thread,
|
the_thread,
|
||||||
&api->Signal_action,
|
&api->Signal_action,
|
||||||
@@ -74,7 +72,7 @@ rtems_status_code rtems_signal_send(
|
|||||||
_Thread_Dispatch_enable( cpu_self );
|
_Thread_Dispatch_enable( cpu_self );
|
||||||
} else {
|
} else {
|
||||||
_ASR_Post_signals( signal_set, &asr->signals_pending );
|
_ASR_Post_signals( signal_set, &asr->signals_pending );
|
||||||
_ASR_Release( asr, &lock_context );
|
_Thread_State_release( the_thread, &lock_context );
|
||||||
}
|
}
|
||||||
|
|
||||||
return RTEMS_SUCCESSFUL;
|
return RTEMS_SUCCESSFUL;
|
||||||
|
|||||||
@@ -98,20 +98,22 @@ rtems_status_code rtems_task_mode(
|
|||||||
if ( mask & RTEMS_ASR_MASK ) {
|
if ( mask & RTEMS_ASR_MASK ) {
|
||||||
bool is_asr_enabled = !_Modes_Is_asr_disabled( mode_set );
|
bool is_asr_enabled = !_Modes_Is_asr_disabled( mode_set );
|
||||||
|
|
||||||
|
_Thread_State_acquire( executing, &lock_context );
|
||||||
|
|
||||||
if ( is_asr_enabled != asr->is_enabled ) {
|
if ( is_asr_enabled != asr->is_enabled ) {
|
||||||
asr->is_enabled = is_asr_enabled;
|
asr->is_enabled = is_asr_enabled;
|
||||||
|
|
||||||
if ( _ASR_Swap_signals( asr ) != 0 ) {
|
if ( _ASR_Swap_signals( asr ) != 0 ) {
|
||||||
needs_asr_dispatching = true;
|
needs_asr_dispatching = true;
|
||||||
_Thread_State_acquire( executing, &lock_context );
|
|
||||||
_Thread_Add_post_switch_action(
|
_Thread_Add_post_switch_action(
|
||||||
executing,
|
executing,
|
||||||
&api->Signal_action,
|
&api->Signal_action,
|
||||||
_Signal_Action_handler
|
_Signal_Action_handler
|
||||||
);
|
);
|
||||||
_Thread_State_release( executing, &lock_context );
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_Thread_State_release( executing, &lock_context );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( preempt_enabled || needs_asr_dispatching ) {
|
if ( preempt_enabled || needs_asr_dispatching ) {
|
||||||
|
|||||||
@@ -20,7 +20,6 @@
|
|||||||
|
|
||||||
#include <rtems/config.h>
|
#include <rtems/config.h>
|
||||||
#include <rtems/sysinit.h>
|
#include <rtems/sysinit.h>
|
||||||
#include <rtems/rtems/asrimpl.h>
|
|
||||||
#include <rtems/rtems/eventimpl.h>
|
#include <rtems/rtems/eventimpl.h>
|
||||||
#include <rtems/rtems/tasksimpl.h>
|
#include <rtems/rtems/tasksimpl.h>
|
||||||
#include <rtems/score/threadimpl.h>
|
#include <rtems/score/threadimpl.h>
|
||||||
@@ -28,37 +27,6 @@
|
|||||||
|
|
||||||
Thread_Information _RTEMS_tasks_Information;
|
Thread_Information _RTEMS_tasks_Information;
|
||||||
|
|
||||||
/*
|
|
||||||
* _RTEMS_tasks_Create_extension
|
|
||||||
*
|
|
||||||
* This routine is an extension routine that is invoked as part
|
|
||||||
* of creating any type of task or thread in the system. If the
|
|
||||||
* task is created via another API, then this routine is invoked
|
|
||||||
* and this API given the opportunity to initialize its extension
|
|
||||||
* area.
|
|
||||||
*/
|
|
||||||
|
|
||||||
static bool _RTEMS_tasks_Create_extension(
|
|
||||||
Thread_Control *executing,
|
|
||||||
Thread_Control *created
|
|
||||||
)
|
|
||||||
{
|
|
||||||
RTEMS_API_Control *api;
|
|
||||||
|
|
||||||
api = created->API_Extensions[ THREAD_API_RTEMS ];
|
|
||||||
|
|
||||||
_ASR_Create( &api->Signal );
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* _RTEMS_tasks_Start_extension
|
|
||||||
*
|
|
||||||
* This extension routine is invoked when a task is started for the
|
|
||||||
* first time.
|
|
||||||
*/
|
|
||||||
|
|
||||||
static void _RTEMS_tasks_Start_extension(
|
static void _RTEMS_tasks_Start_extension(
|
||||||
Thread_Control *executing,
|
Thread_Control *executing,
|
||||||
Thread_Control *started
|
Thread_Control *started
|
||||||
@@ -72,24 +40,10 @@ static void _RTEMS_tasks_Start_extension(
|
|||||||
_Event_Initialize( &api->System_event );
|
_Event_Initialize( &api->System_event );
|
||||||
}
|
}
|
||||||
|
|
||||||
static void _RTEMS_tasks_Delete_extension(
|
|
||||||
Thread_Control *executing,
|
|
||||||
Thread_Control *deleted
|
|
||||||
)
|
|
||||||
{
|
|
||||||
RTEMS_API_Control *api;
|
|
||||||
|
|
||||||
api = deleted->API_Extensions[ THREAD_API_RTEMS ];
|
|
||||||
|
|
||||||
_ASR_Destroy( &api->Signal );
|
|
||||||
}
|
|
||||||
|
|
||||||
User_extensions_Control _RTEMS_tasks_User_extensions = {
|
User_extensions_Control _RTEMS_tasks_User_extensions = {
|
||||||
.Callouts = {
|
.Callouts = {
|
||||||
.thread_create = _RTEMS_tasks_Create_extension,
|
|
||||||
.thread_start = _RTEMS_tasks_Start_extension,
|
.thread_start = _RTEMS_tasks_Start_extension,
|
||||||
.thread_restart = _RTEMS_tasks_Start_extension,
|
.thread_restart = _RTEMS_tasks_Start_extension
|
||||||
.thread_delete = _RTEMS_tasks_Delete_extension
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -718,6 +718,7 @@ struct _Thread_Control {
|
|||||||
* The lock of this thread queue is used for various purposes. It protects
|
* The lock of this thread queue is used for various purposes. It protects
|
||||||
* the following fields
|
* the following fields
|
||||||
*
|
*
|
||||||
|
* - RTEMS_API_Control::Signal, and
|
||||||
* - Thread_Control::Post_switch_actions.
|
* - Thread_Control::Post_switch_actions.
|
||||||
*
|
*
|
||||||
* @see _Thread_State_acquire().
|
* @see _Thread_State_acquire().
|
||||||
|
|||||||
Reference in New Issue
Block a user