summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/iterateoverthreads.c
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/score/src/iterateoverthreads.c
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/score/src/iterateoverthreads.c')
-rw-r--r--cpukit/score/src/iterateoverthreads.c9
1 files changed, 4 insertions, 5 deletions
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 )