summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2010-11-23 15:26:52 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2010-11-23 15:26:52 +0000
commit8720a3a509f35391cfeb9e875d87e2152f326938 (patch)
tree7d68149885220c878fc3d1b3bc92007e7bf815eb /cpukit/libmisc
parent2010-11-23 Sebastian Huber <sebastian.huber@embedded-brains.de> (diff)
downloadrtems-8720a3a509f35391cfeb9e875d87e2152f326938.tar.bz2
2010-11-23 Sebastian Huber <sebastian.huber@embedded-brains.de>
* score/src/iterateoverthreads.c, libmisc/cpuuse/cpuusagereport.c: Avoid dead code if POSIX API is enabled.
Diffstat (limited to 'cpukit/libmisc')
-rw-r--r--cpukit/libmisc/cpuuse/cpuusagereport.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/cpukit/libmisc/cpuuse/cpuusagereport.c b/cpukit/libmisc/cpuuse/cpuusagereport.c
index b46aab7c35..8b7eb00300 100644
--- a/cpukit/libmisc/cpuuse/cpuusagereport.c
+++ b/cpukit/libmisc/cpuuse/cpuusagereport.c
@@ -71,11 +71,10 @@ void rtems_cpu_usage_report_with_plugin(
_Timestamp_Subtract( &CPU_usage_Uptime_at_last_reset, &uptime, &total );
#else
for ( api_index = 1 ; api_index <= OBJECTS_APIS_LAST ; api_index++ ) {
- /*
- * Since POSIX is optional, this can occur.
- */
- if ( !_Objects_Information_table[ api_index ] )
- continue;
+ #if !defined(RTEMS_POSIX_API) || defined(RTEMS_DEBUG)
+ if ( !_Objects_Information_table[ api_index ] )
+ continue;
+ #endif
information = _Objects_Information_table[ api_index ][ 1 ];
if ( information ) {
@@ -103,11 +102,10 @@ void rtems_cpu_usage_report_with_plugin(
);
for ( api_index = 1 ; api_index <= OBJECTS_APIS_LAST ; api_index++ ) {
- /*
- * Since POSIX is optional, this can occur.
- */
- if ( !_Objects_Information_table[ api_index ] )
- continue;
+ #if !defined(RTEMS_POSIX_API) || defined(RTEMS_DEBUG)
+ if ( !_Objects_Information_table[ api_index ] )
+ continue;
+ #endif
information = _Objects_Information_table[ api_index ][ 1 ];
if ( information ) {