summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/rtems/asr.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-08 09:03:47 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-12 13:25:39 +0100
commit257cf743a5c69f9dd302fe31d99978f84970ad64 (patch)
treed00344ec2a6de3dcdbdc5929b02a253c984609d9 /cpukit/include/rtems/rtems/asr.h
parentrtems: Move internal structures to ratemondata.h (diff)
downloadrtems-257cf743a5c69f9dd302fe31d99978f84970ad64.tar.bz2
rtems: Move internal structures to asrdata.h
Update #3598.
Diffstat (limited to 'cpukit/include/rtems/rtems/asr.h')
-rw-r--r--cpukit/include/rtems/rtems/asr.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/cpukit/include/rtems/rtems/asr.h b/cpukit/include/rtems/rtems/asr.h
index edd5e2fe62..b2fa02ce9e 100644
--- a/cpukit/include/rtems/rtems/asr.h
+++ b/cpukit/include/rtems/rtems/asr.h
@@ -57,25 +57,6 @@ typedef rtems_asr ( *rtems_asr_entry )(
rtems_signal_set
);
-/**
- * The following defines the control structure used to manage
- * signals. Each thread has a copy of this record.
- */
-typedef struct {
- /** This field indicates if are ASRs enabled currently. */
- bool is_enabled;
- /** This field indicates if address of the signal handler function. */
- rtems_asr_entry handler;
- /** This field indicates if the task mode the signal will run with. */
- Modes_Control 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;
- /** This field indicates if nest level of signals being processed */
- uint32_t nest_level;
-} ASR_Information;
-
/*
* The following constants define the individual signals which may
* be used to compose a signal set.