2009-05-05 Joel Sherrill <joel.sherrill@oarcorp.com>

* bootcard.c, gdbstub/rtems-stub-glue.c: Add info to not enough memory
	message.
This commit is contained in:
Joel Sherrill
2009-05-05 21:17:47 +00:00
parent 43776b57f6
commit dce79aee44
3 changed files with 58 additions and 3 deletions

View File

@@ -153,7 +153,11 @@ int boot_card(
&heap_start, (ssize_t*) &heap_size);
if ( work_area_size <= Configuration.work_space_size ) {
printk( "bootcard: Work space too big for work area!\n");
printk(
"bootcard: Work space too big for work area! (%d > %d)\n",
Configuration.work_space_size,
work_area_size
);
bsp_cleanup();
return -1;
}