From ee0815066d48ade641421c60179aa8c385ea1d72 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 18 Jan 2005 12:21:06 +0000 Subject: [PATCH] 2005-01-18 Ralf Corsepius * sapi/include/rtems/fatal.h, score/include/rtems/score/interr.h: Remove volatile on return type (GCC-4.0 complains about them). --- cpukit/ChangeLog | 5 +++++ cpukit/sapi/include/rtems/fatal.h | 2 +- cpukit/score/include/rtems/score/interr.h | 2 +- 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,3 +1,8 @@ +2005-01-18 Ralf Corsepius + + * sapi/include/rtems/fatal.h, score/include/rtems/score/interr.h: + Remove volatile on return type. + 2005-01-18 Ralf Corsepius * itron/inline/rtems/itron/task.inl (_ITRON_Task_Priority_to_Core, 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