summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-01-18 12:21:06 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-01-18 12:21:06 +0000
commitee0815066d48ade641421c60179aa8c385ea1d72 (patch)
tree35f17187770939eeaa38c45d123f9b7567043a7a
parent2005-01-18 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-ee0815066d48ade641421c60179aa8c385ea1d72.tar.bz2
2005-01-18 Ralf Corsepius <ralf.corsepius@rtems.org>
* sapi/include/rtems/fatal.h, score/include/rtems/score/interr.h: Remove volatile on return type (GCC-4.0 complains about them).
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/sapi/include/rtems/fatal.h2
-rw-r--r--cpukit/score/include/rtems/score/interr.h2
3 files changed, 7 insertions, 2 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index ad377a5fc8..7b8f9611b3 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,10 @@
2005-01-18 Ralf Corsepius <ralf.corsepius@rtems.org>
+ * sapi/include/rtems/fatal.h, score/include/rtems/score/interr.h:
+ Remove volatile on return type.
+
+2005-01-18 Ralf Corsepius <ralf.corsepius@rtems.org>
+
* itron/inline/rtems/itron/task.inl (_ITRON_Task_Priority_to_Core,
_ITRON_tasks_Core_to_Priority): Correct return types.
diff --git a/cpukit/sapi/include/rtems/fatal.h b/cpukit/sapi/include/rtems/fatal.h
index adc8c2e43b..b46d2b35ff 100644
--- a/cpukit/sapi/include/rtems/fatal.h
+++ b/cpukit/sapi/include/rtems/fatal.h
@@ -39,7 +39,7 @@ extern "C" {
* determines that a fatal error has occurred.
*/
-void volatile rtems_fatal_error_occurred(
+void rtems_fatal_error_occurred(
uint32_t the_error
);
diff --git a/cpukit/score/include/rtems/score/interr.h b/cpukit/score/include/rtems/score/interr.h
index 90fcd3f184..ea75940531 100644
--- a/cpukit/score/include/rtems/score/interr.h
+++ b/cpukit/score/include/rtems/score/interr.h
@@ -84,7 +84,7 @@ SCORE_EXTERN Internal_errors_Information Internal_errors_What_happened;
* This routine is invoked when the application or the executive itself
* determines that a fatal error has occurred.
*/
-void volatile _Internal_error_Occurred(
+void _Internal_error_Occurred(
Internal_errors_Source the_source,
boolean is_internal,
uint32_t the_error