mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 14:18:20 +00:00
* libmisc/serdbg/termios_printk.c, libmisc/serdbg/termios_printk.h: Fixed incompatible return value. * libmisc/cpuuse/cpuusagereport.c: Changed output format. * libmisc/Makefile.am, libmisc/monitor/mon-editor.c: New file. * libmisc/capture/capture-cli.c, libmisc/monitor/mon-command.c, libmisc/monitor/mon-monitor.c, libmisc/monitor/mon-object.c, libmisc/monitor/mon-prmisc.c, libmisc/monitor/mon-symbols.c, libmisc/monitor/monitor.h, libmisc/shell/cat_file.c, libmisc/shell/cmds.c, libmisc/shell/internal.h, libmisc/shell/main_help.c, libmisc/shell/shell.c, libmisc/shell/shell.h, libmisc/shell/shell_cmdset.c, libmisc/shell/shell_getchar.c, libmisc/shell/str2int.c: Various global data is now read only. Added 'const' qualifier to many pointer parameters. It is no longer possible to remove monitor commands. Moved monitor line editor into a separate file to avoid unnecessary dependencies.
192 lines
5.8 KiB
C
192 lines
5.8 KiB
C
/*
|
|
* CPU Usage Reporter
|
|
*
|
|
* COPYRIGHT (c) 1989-2007
|
|
* 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.rtems.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <rtems.h>
|
|
|
|
#include <assert.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <ctype.h>
|
|
#include <inttypes.h>
|
|
|
|
#include <rtems/cpuuse.h>
|
|
#include <rtems/bspIo.h>
|
|
|
|
#if defined(RTEMS_ENABLE_NANOSECOND_CPU_USAGE_STATISTICS)
|
|
#include <rtems/score/timestamp.h>
|
|
#endif
|
|
|
|
#ifdef RTEMS_ENABLE_NANOSECOND_CPU_USAGE_STATISTICS
|
|
extern Timestamp_Control CPU_usage_Uptime_at_last_reset;
|
|
#else
|
|
extern uint32_t CPU_usage_Ticks_at_last_reset;
|
|
#endif
|
|
|
|
/*PAGE
|
|
*
|
|
* rtems_cpu_usage_report
|
|
*/
|
|
|
|
void rtems_cpu_usage_report_with_plugin(
|
|
void *context,
|
|
rtems_printk_plugin_t print
|
|
)
|
|
{
|
|
uint32_t i;
|
|
uint32_t api_index;
|
|
Thread_Control *the_thread;
|
|
Objects_Information *information;
|
|
char name[13];
|
|
uint32_t ival, fval;
|
|
#ifdef RTEMS_ENABLE_NANOSECOND_CPU_USAGE_STATISTICS
|
|
Timestamp_Control uptime, total, ran;
|
|
#else
|
|
uint32_t total_units = 0;
|
|
#endif
|
|
|
|
if ( !print )
|
|
return;
|
|
|
|
/*
|
|
* When not using nanosecond CPU usage resolution, we have to count
|
|
* the number of "ticks" we gave credit for to give the user a rough
|
|
* guideline as to what each number means proportionally.
|
|
*/
|
|
#ifdef RTEMS_ENABLE_NANOSECOND_CPU_USAGE_STATISTICS
|
|
_TOD_Get_uptime( &uptime );
|
|
_Timestamp_Subtract( &CPU_usage_Uptime_at_last_reset, &uptime, &total );
|
|
#else
|
|
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->cpu_time_used;
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
(*print)(
|
|
context,
|
|
"-------------------------------------------------------------------------------\n"
|
|
" CPU USAGE BY THREAD\n"
|
|
"------------+----------------------------------------+---------------+---------\n"
|
|
#if defined(RTEMS_ENABLE_NANOSECOND_CPU_USAGE_STATISTICS)
|
|
" ID | NAME | SECONDS | PERCENT\n"
|
|
#else
|
|
" ID | NAME | TICKS | PERCENT\n"
|
|
#endif
|
|
"------------+----------------------------------------+---------------+---------\n"
|
|
);
|
|
|
|
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;
|
|
|
|
rtems_object_get_name( the_thread->Object.id, sizeof(name), name );
|
|
|
|
(*print)(
|
|
context,
|
|
" 0x%08" PRIx32 " | %-38s |",
|
|
the_thread->Object.id,
|
|
name
|
|
);
|
|
|
|
#ifdef RTEMS_ENABLE_NANOSECOND_CPU_USAGE_STATISTICS
|
|
/*
|
|
* If this is the currently executing thread, account for time
|
|
* since the last context switch.
|
|
*/
|
|
ran = the_thread->cpu_time_used;
|
|
if ( _Thread_Executing->Object.id == the_thread->Object.id ) {
|
|
Timestamp_Control used;
|
|
_Timestamp_Subtract(
|
|
&_Thread_Time_of_last_context_switch, &uptime, &used
|
|
);
|
|
_Timestamp_Add_to( &ran, &used );
|
|
};
|
|
_Timestamp_Divide( &ran, &total, &ival, &fval );
|
|
|
|
/*
|
|
* Print the information
|
|
*/
|
|
|
|
(*print)( context,
|
|
"%7" PRIu32 ".%06" PRIu32 " |%4" PRIu32 ".%03" PRIu32 "\n",
|
|
_Timestamp_Get_seconds( &ran ),
|
|
_Timestamp_Get_nanoseconds( &ran ) /
|
|
TOD_NANOSECONDS_PER_MICROSECOND,
|
|
ival, fval
|
|
);
|
|
#else
|
|
ival = (total_units) ?
|
|
the_thread->cpu_time_used * 10000 / total_units : 0;
|
|
fval = ival % 1000;
|
|
ival /= 1000;
|
|
(*print)( context,
|
|
"%14" PRIu32 " |%4" PRIu32 ".%03" PRIu32 "\n",
|
|
the_thread->cpu_time_used,
|
|
ival,
|
|
fval
|
|
);
|
|
#endif
|
|
}
|
|
}
|
|
}
|
|
|
|
#ifdef RTEMS_ENABLE_NANOSECOND_CPU_USAGE_STATISTICS
|
|
(*print)(
|
|
context,
|
|
"------------+----------------------------------------+---------------+---------\n"
|
|
" TIME SINCE LAST CPU USAGE RESET IN SECONDS: %7" PRIu32 ".%06" PRIu32 "\n"
|
|
"-------------------------------------------------------------------------------\n",
|
|
_Timestamp_Get_seconds( &total ),
|
|
_Timestamp_Get_nanoseconds( &total ) / TOD_NANOSECONDS_PER_MICROSECOND
|
|
);
|
|
#else
|
|
(*print)(
|
|
context,
|
|
"------------+----------------------------------------+---------------+---------\n"
|
|
" TICKS SINCE LAST SYSTEM RESET: %14" PRIu32 "\n"
|
|
" TOTAL UNITS: %14" PRIu32 "\n"
|
|
"-------------------------------------------------------------------------------\n",
|
|
_Watchdog_Ticks_since_boot - CPU_usage_Ticks_at_last_reset,
|
|
total_units
|
|
);
|
|
#endif
|
|
}
|
|
|
|
void rtems_cpu_usage_report( void )
|
|
{
|
|
rtems_cpu_usage_report_with_plugin( NULL, printk_plugin );
|
|
}
|