forked from Imagelibrary/rtems
* capture/capture-cli.c: Add config-header support. * capture/capture.c: Add config-header support. * cpuuse/cpuuse.c: Add config-header support. * devnull/devnull.c: Add config-header support. * dummy/dummy.c: Add config-header support. * dumpbuf/dumpbuf.c: Add config-header support. * monitor/mon-command.c: Add config-header support. * monitor/mon-config.c: Add config-header support. * monitor/mon-dname.c: Add config-header support. * monitor/mon-driver.c: Add config-header support. * monitor/mon-extension.c: Add config-header support. * monitor/mon-itask.c: Add config-header support. * monitor/mon-manager.c: Add config-header support. * monitor/mon-monitor.c: Add config-header support. * monitor/mon-mpci.c: Add config-header support. * monitor/mon-object.c: Add config-header support. * monitor/mon-prmisc.c: Add config-header support. * monitor/mon-queue.c: Add config-header support. * monitor/mon-server.c: Add config-header support. * monitor/mon-symbols.c: Add config-header support. * monitor/mon-task.c: Add config-header support. * mw-fb/mw_fb.c: Add config-header support. * mw-fb/mw_uid.c: Add config-header support. * rtmonuse/rtmonuse.c: Add config-header support. * serdbg/serdbg.c: Add config-header support. * serdbg/serdbgio.c: Add config-header support. * serdbg/termios_printk.c: Add config-header support. * shell/cmds.c: Add config-header support. * stackchk/check.c: Add config-header support. * untar/untar.c: Add config-header support.
159 lines
3.8 KiB
C
159 lines
3.8 KiB
C
/*
|
|
* CPU Usage Reporter
|
|
*
|
|
* COPYRIGHT (c) 1989-1999. 1996.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.OARcorp.com/rtems/license.html.
|
|
*
|
|
* $Id$
|
|
*
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <rtems.h>
|
|
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
|
|
#include <rtems/cpuuse.h>
|
|
|
|
unsigned32 CPU_usage_Ticks_at_last_reset;
|
|
|
|
/*PAGE
|
|
*
|
|
* CPU_usage_Dump
|
|
*/
|
|
|
|
void CPU_usage_Dump( void )
|
|
{
|
|
unsigned32 i;
|
|
unsigned32 api_index;
|
|
Thread_Control *the_thread;
|
|
Objects_Information *information;
|
|
unsigned32 u32_name;
|
|
char name[5];
|
|
unsigned32 total_units = 0;
|
|
|
|
for ( api_index = 1 ;
|
|
api_index <= OBJECTS_APIS_LAST ;
|
|
api_index++ ) {
|
|
if ( !_Objects_Information_table[ api_index ] )
|
|
continue;
|
|
information = _Objects_Information_table[ api_index ][ 1 ];
|
|
if ( information ) {
|
|
for ( i=1 ; i <= information->maximum ; i++ ) {
|
|
the_thread = (Thread_Control *)information->local_table[ i ];
|
|
|
|
if ( the_thread )
|
|
total_units += the_thread->ticks_executed;
|
|
}
|
|
}
|
|
}
|
|
|
|
printf("CPU Usage by thread\n");
|
|
#if defined(unix) || ( CPU_HARDWARE_FP == TRUE )
|
|
printf( " ID NAME TICKS PERCENT\n" );
|
|
#else
|
|
printf( " ID NAME TICKS\n" );
|
|
#endif
|
|
|
|
for ( api_index = 1 ;
|
|
api_index <= OBJECTS_APIS_LAST ;
|
|
api_index++ ) {
|
|
if ( !_Objects_Information_table[ api_index ] )
|
|
continue;
|
|
information = _Objects_Information_table[ api_index ][ 1 ];
|
|
if ( information ) {
|
|
for ( i=1 ; i <= information->maximum ; i++ ) {
|
|
the_thread = (Thread_Control *)information->local_table[ i ];
|
|
|
|
if ( !the_thread )
|
|
continue;
|
|
|
|
if ( information->is_string )
|
|
u32_name = *(unsigned32 *)the_thread->Object.name;
|
|
else
|
|
u32_name = (unsigned32)the_thread->Object.name;
|
|
|
|
name[ 0 ] = (u32_name >> 24) & 0xff;
|
|
name[ 1 ] = (u32_name >> 16) & 0xff;
|
|
name[ 2 ] = (u32_name >> 8) & 0xff;
|
|
name[ 3 ] = (u32_name >> 0) & 0xff;
|
|
name[ 4 ] = '\0';
|
|
|
|
if ( !isprint(name[0]) ) name[0] = '*';
|
|
if ( !isprint(name[1]) ) name[1] = '*';
|
|
if ( !isprint(name[2]) ) name[2] = '*';
|
|
if ( !isprint(name[3]) ) name[3] = '*';
|
|
|
|
#if defined(unix) || ( CPU_HARDWARE_FP == TRUE )
|
|
printf( "0x%08x %4s %8d %5.3f\n",
|
|
the_thread->Object.id,
|
|
name,
|
|
the_thread->ticks_executed,
|
|
(total_units) ?
|
|
(double)the_thread->ticks_executed / (double)total_units :
|
|
(double)total_units
|
|
);
|
|
#else
|
|
printf( "0x%08x %4s %8d\n",
|
|
the_thread->Object.id,
|
|
name,
|
|
the_thread->ticks_executed
|
|
);
|
|
#endif
|
|
}
|
|
}
|
|
}
|
|
|
|
printf(
|
|
"\nTicks since last reset = %d\n",
|
|
_Watchdog_Ticks_since_boot - CPU_usage_Ticks_at_last_reset
|
|
);
|
|
printf( "\nTotal Units = %d\n", total_units );
|
|
}
|
|
|
|
/*PAGE
|
|
*
|
|
* CPU_usage_Reset
|
|
*/
|
|
|
|
void CPU_usage_Reset( void )
|
|
{
|
|
unsigned32 i;
|
|
unsigned32 api_index;
|
|
Thread_Control *the_thread;
|
|
Objects_Information *information;
|
|
|
|
CPU_usage_Ticks_at_last_reset = _Watchdog_Ticks_since_boot;
|
|
|
|
for ( api_index = 1 ;
|
|
api_index <= OBJECTS_APIS_LAST ;
|
|
api_index++ ) {
|
|
if ( !_Objects_Information_table[ api_index ] )
|
|
continue;
|
|
information = _Objects_Information_table[ api_index ][ 1 ];
|
|
if ( information ) {
|
|
for ( i=1 ; i <= information->maximum ; i++ ) {
|
|
the_thread = (Thread_Control *)information->local_table[ i ];
|
|
|
|
if ( !the_thread )
|
|
continue;
|
|
|
|
the_thread->ticks_executed = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|