summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-03-11 15:40:29 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-03-11 15:40:29 +0000
commit7209b4c516f5b6aaac5d2c0d56d7a82418acf6a9 (patch)
tree252417fa7be4add7b7968a29f91b3c91ed84606f
parent2010-03-11 Andrei Mozzhuhin <nopscmn@gmail.com> (diff)
downloadrtems-7209b4c516f5b6aaac5d2c0d56d7a82418acf6a9.tar.bz2
2010-03-11 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1458/cpukit * rtems/inline/rtems/rtems/asr.inl: Do not enable signals by default. Wait for a signal handler to be installed.
-rw-r--r--cpukit/ChangeLog6
-rw-r--r--cpukit/rtems/inline/rtems/rtems/asr.inl2
2 files changed, 7 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 0cabb535c7..f2661dab0f 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,9 @@
+2010-03-11 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ PR 1458/cpukit
+ * rtems/inline/rtems/rtems/asr.inl: Do not enable signals by default.
+ Wait for a signal handler to be installed.
+
2010-03-11 Andrei Mozzhuhin <nopscmn@gmail.com>
PR 1496/shell
diff --git a/cpukit/rtems/inline/rtems/rtems/asr.inl b/cpukit/rtems/inline/rtems/rtems/asr.inl
index 1cb3246f1f..93587a312c 100644
--- a/cpukit/rtems/inline/rtems/rtems/asr.inl
+++ b/cpukit/rtems/inline/rtems/rtems/asr.inl
@@ -38,7 +38,7 @@ RTEMS_INLINE_ROUTINE void _ASR_Initialize (
ASR_Information *information
)
{
- information->is_enabled = true;
+ information->is_enabled = false;
information->handler = NULL;
information->mode_set = RTEMS_DEFAULT_MODES;
information->signals_posted = 0;