2009-02-26 Joel Sherrill <joel.sherrill@OARcorp.com>

* shared/startup/bspgetworkarea.c: Make debug messages same as
	standard.
This commit is contained in:
Joel Sherrill
2009-02-26 17:38:05 +00:00
parent 7b1d93dbe9
commit 9f127d2123
2 changed files with 16 additions and 5 deletions

View File

@@ -1,3 +1,8 @@
2009-02-26 Joel Sherrill <joel.sherrill@OARcorp.com>
* shared/startup/bspgetworkarea.c: Make debug messages same as
standard.
2009-02-19 Joel Sherrill <joel.sherrill@oarcorp.com>
* shared/irq/irq.c: Spacing.

View File

@@ -6,9 +6,14 @@
* $Id$
*/
/* #define BSP_GET_WORK_AREA_DEBUG */
#include <bsp.h>
#include <bsp/bootcard.h>
#include <stdint.h>
#ifdef BSP_GET_WORK_AREA_DEBUG
#include <rtems/bspIo.h>
#endif
extern void *__rtems_end;
extern uintptr_t _bsp_sbrk_init(uintptr_t, uintptr_t*);
@@ -44,11 +49,12 @@ void bsp_get_work_area(
* The following may be helpful in debugging what goes wrong when
* you are allocating the Work Area in a new BSP.
*/
#if 0
printk( "Work Area Base %d %x\n", work_area, work_area );
printk( "Work Area Size %d %x\n", work_size, work_size );
printk( "Work Area End %d %x\n",
work_area + work_size, work_area + work_size );
#ifdef BSP_GET_WORK_AREA_DEBUG
printk( "work_area_start = %p\n", *work_area_start );
printk( "work_area_size = %d 0x%08x\n", *work_area_size, *work_area_size );
printk( "end = %p\n", *work_area_start + *work_area_size );
printk( "heap_start = %p\n", *heap_start );
printk( "heap_size = %d\n", *heap_size );
#endif
}