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/score/src/iterateoverthreads.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'cpukit/score/src') diff --git a/cpukit/score/src/iterateoverthreads.c b/cpukit/score/src/iterateoverthreads.c index 34683e6790..8c65becc4c 100644 --- a/cpukit/score/src/iterateoverthreads.c +++ b/cpukit/score/src/iterateoverthreads.c @@ -33,11 +33,10 @@ void rtems_iterate_over_all_threads(rtems_per_thread_routine routine) return; 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