* score/src/iterateoverthreads.c, libmisc/cpuuse/cpuusagereport.c:
	Avoid dead code if POSIX API is enabled.
This commit is contained in:
Sebastian Huber
2010-11-23 15:26:52 +00:00
parent 4e3d9b8a84
commit 8720a3a509
3 changed files with 17 additions and 15 deletions

View File

@@ -1,3 +1,8 @@
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.
2010-11-23 Sebastian Huber <sebastian.huber@embedded-brains.de>
* score/src/iterateoverthreads.c, libmisc/cpuuse/cpuusagereport.c:

View File

@@ -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 ) {

View File

@@ -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 )