summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/rtems
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-02-16 08:15:10 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-02-20 15:18:49 +0100
commitf6a97f59925e0f6f880fdc5ce9e94a84e5db2998 (patch)
tree83558db9e431ec5b86587779b4c7bf7260904b02 /cpukit/include/rtems/rtems
parentrtems: Move _Signal_Action_handler() (diff)
downloadrtems-f6a97f59925e0f6f880fdc5ce9e94a84e5db2998.tar.bz2
rtems: Simplify signal handling
Remove superfluous ASR_Information::signals_posted. Move code out of trivial inline functions. Update #4244.
Diffstat (limited to 'cpukit/include/rtems/rtems')
-rw-r--r--cpukit/include/rtems/rtems/asrdata.h2
-rw-r--r--cpukit/include/rtems/rtems/asrimpl.h90
-rw-r--r--cpukit/include/rtems/rtems/signalimpl.h10
3 files changed, 0 insertions, 102 deletions
diff --git a/cpukit/include/rtems/rtems/asrdata.h b/cpukit/include/rtems/rtems/asrdata.h
index b0cb8f3bbc..3f44d3b030 100644
--- a/cpukit/include/rtems/rtems/asrdata.h
+++ b/cpukit/include/rtems/rtems/asrdata.h
@@ -42,8 +42,6 @@ typedef struct {
rtems_asr_entry handler;
/** This field indicates if the task mode the signal will run with. */
rtems_mode mode_set;
- /** This field indicates the signal set that is posted. */
- rtems_signal_set signals_posted;
/** This field indicates the signal set that is pending. */
rtems_signal_set signals_pending;
} ASR_Information;
diff --git a/cpukit/include/rtems/rtems/asrimpl.h b/cpukit/include/rtems/rtems/asrimpl.h
deleted file mode 100644
index e9369079e6..0000000000
--- a/cpukit/include/rtems/rtems/asrimpl.h
+++ /dev/null
@@ -1,90 +0,0 @@
-/**
- * @file
- *
- * @ingroup RTEMSImplClassicASR
- *
- * @brief This header file provides the implementation interfaces of
- * the @ref RTEMSImplClassicASR support.
- */
-
-/* COPYRIGHT (c) 1989-2008.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-
-#ifndef _RTEMS_RTEMS_ASRIMPL_H
-#define _RTEMS_RTEMS_ASRIMPL_H
-
-#include <rtems/rtems/asrdata.h>
-
-#include <string.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/**
- * @defgroup RTEMSImplClassicASR Asynchronous Signal Routine (ASR)
- *
- * @ingroup RTEMSImplClassic
- *
- * @brief This group contains the implementation to support asynchronous signal
- * routines.
- *
- * @{
- */
-
-/**
- * @brief ASR_Initialize
- *
- * This routine initializes the given RTEMS_ASR information record.
- */
-RTEMS_INLINE_ROUTINE void _ASR_Initialize (
- ASR_Information *asr
-)
-{
- memset(asr, 0, sizeof(*asr));
-}
-
-RTEMS_INLINE_ROUTINE rtems_signal_set _ASR_Swap_signals( ASR_Information *asr )
-{
- rtems_signal_set new_signals_posted;
-
- new_signals_posted = asr->signals_pending;
- asr->signals_pending = asr->signals_posted;
- asr->signals_posted = new_signals_posted;
-
- return new_signals_posted;
-}
-
-RTEMS_INLINE_ROUTINE void _ASR_Post_signals(
- rtems_signal_set signals,
- rtems_signal_set *signal_set
-)
-{
- *signal_set |= signals;
-}
-
-RTEMS_INLINE_ROUTINE rtems_signal_set _ASR_Get_posted_signals(
- ASR_Information *asr
-)
-{
- rtems_signal_set signal_set;
-
- signal_set = asr->signals_posted;
- asr->signals_posted = 0;
-
- return signal_set;
-}
-
-/**@}*/
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-/* end of include file */
diff --git a/cpukit/include/rtems/rtems/signalimpl.h b/cpukit/include/rtems/rtems/signalimpl.h
index 51f742c9fe..db1ff71620 100644
--- a/cpukit/include/rtems/rtems/signalimpl.h
+++ b/cpukit/include/rtems/rtems/signalimpl.h
@@ -31,18 +31,8 @@ extern "C" {
* @ingroup RTEMSImplClassic
*
* @brief This group contains the Signal Manager implementation.
- *
- * @{
*/
-void _Signal_Action_handler(
- Thread_Control *executing,
- Thread_Action *action,
- ISR_lock_Context *lock_context
-);
-
-/**@}*/
-
#ifdef __cplusplus
}
#endif