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:
Joel Sherrill
2003-12-11 14:18:16 +00:00
parent 5cb24705f7
commit 028e84cf16
3 changed files with 7 additions and 2 deletions
+5
View File
@@ -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.
+1 -1
View File
@@ -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 )
+1 -1
View File
@@ -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;