From 8720a3a509f35391cfeb9e875d87e2152f326938 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 23 Nov 2010 15:26:52 +0000 Subject: 2010-11-23 Sebastian Huber * score/src/iterateoverthreads.c, libmisc/cpuuse/cpuusagereport.c: Avoid dead code if POSIX API is enabled. --- cpukit/libmisc/cpuuse/cpuusagereport.c | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'cpukit/libmisc') 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 ) { -- cgit v1.2.3