summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/ratemonresetall.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-11-16 17:48:06 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-11-16 17:48:06 +0000
commit5290c5aeb8e0e2987c88fccf8a6dba7e211ecdd8 (patch)
tree78f5f3aad00b35f84bbb8643618b70650b974c8b /cpukit/rtems/src/ratemonresetall.c
parent2010-11-16 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-5290c5aeb8e0e2987c88fccf8a6dba7e211ecdd8.tar.bz2
2010-11-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/src/ratemonreportstatistics.c, rtems/src/ratemonresetall.c: Remove unchecked return status pointed out by clang.
Diffstat (limited to 'cpukit/rtems/src/ratemonresetall.c')
-rw-r--r--cpukit/rtems/src/ratemonresetall.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/cpukit/rtems/src/ratemonresetall.c b/cpukit/rtems/src/ratemonresetall.c
index 104b9b7604..39a2ec91e7 100644
--- a/cpukit/rtems/src/ratemonresetall.c
+++ b/cpukit/rtems/src/ratemonresetall.c
@@ -1,7 +1,7 @@
/*
* Rate Monotonic Manager -- Reset Statistics for All Periods
*
- * COPYRIGHT (c) 1989-2007.
+ * COPYRIGHT (c) 1989-2010.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -28,7 +28,6 @@
void rtems_rate_monotonic_reset_all_statistics( void )
{
Objects_Id id;
- rtems_status_code status;
/*
* Prevent allocation or deallocation of any of the periods while
@@ -46,7 +45,7 @@ void rtems_rate_monotonic_reset_all_statistics( void )
for ( id=_Rate_monotonic_Information.minimum_id ;
id <= _Rate_monotonic_Information.maximum_id ;
id++ ) {
- status = rtems_rate_monotonic_reset_statistics( id );
+ (void) rtems_rate_monotonic_reset_statistics( id );
}
/*