mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-21 16:44:32 +08:00
2003-12-11 Joel Sherrill <joel@OARcorp.com>
PR 531/rtems_misc * rtmonuse/rtmonuse.c, stackchk/check.c: Correct indexing.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2003-12-11 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
PR 531/rtems_misc
|
||||
* rtmonuse/rtmonuse.c, stackchk/check.c: Correct indexing.
|
||||
|
||||
2003-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* Makefile.am: Add $(dirstamp) to compilation rules.
|
||||
|
||||
@@ -145,7 +145,7 @@ void Period_usage_Dump( void )
|
||||
*/
|
||||
|
||||
for ( i=1 ;
|
||||
i<_Configuration_Table->RTEMS_api_configuration->maximum_periods ;
|
||||
i<=_Configuration_Table->RTEMS_api_configuration->maximum_periods ;
|
||||
i++ ) {
|
||||
the_usage = &Period_usage_Information[ i ];
|
||||
if ( the_usage->count == 0 )
|
||||
|
||||
@@ -464,7 +464,7 @@ void Stack_check_Dump_threads_usage(
|
||||
if ( info->is_string ) {
|
||||
name = (char *) the_thread->Object.name;
|
||||
} else {
|
||||
u32_name = *(unsigned32 *)the_thread->Object.name;
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user