From d0bb8f3739ea616375e576ecaca226e6ca5f275d Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sun, 23 Jan 2005 16:57:06 +0000 Subject: [PATCH] 2005-01-23 Ralf Corsepius * sapi/src/fatal.c, score/src/interr.c: Remove volatile on return type. --- cpukit/ChangeLog | 5 +++++ cpukit/sapi/src/fatal.c | 2 +- cpukit/score/src/interr.c | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 8c9e2b672b..8f660a9d8a 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,8 @@ +2005-01-23 Ralf Corsepius + + * sapi/src/fatal.c, score/src/interr.c: + Remove volatile on return type. + 2005-01-20 Sergei Organov PR 536/rtems diff --git a/cpukit/sapi/src/fatal.c b/cpukit/sapi/src/fatal.c index fb01c92ee3..5788c54bb4 100644 --- a/cpukit/sapi/src/fatal.c +++ b/cpukit/sapi/src/fatal.c @@ -27,7 +27,7 @@ * Output parameters: NONE */ -void volatile rtems_fatal_error_occurred( +void rtems_fatal_error_occurred( uint32_t the_error ) { diff --git a/cpukit/score/src/interr.c b/cpukit/score/src/interr.c index 3dda8e6f9d..1e131823a0 100644 --- a/cpukit/score/src/interr.c +++ b/cpukit/score/src/interr.c @@ -39,7 +39,7 @@ * NOTE: The the_error is not necessarily a directive status code. */ -void volatile _Internal_error_Occurred( +void _Internal_error_Occurred( Internal_errors_Source the_source, boolean is_internal, uint32_t the_error