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

* shared/bspgetworkarea.c: Switch from ssize_t to uintptr_t for
	bsp_get_work_area() since the work area is larger than a single
	allocatable object.
This commit is contained in:
Joel Sherrill
2009-05-08 13:24:07 +00:00
parent ca427f31d8
commit 7d1b2cac53
2 changed files with 10 additions and 4 deletions

View File

@@ -1,3 +1,9 @@
2009-05-08 Joel Sherrill <joel.sherrill@oarcorp.com>
* shared/bspgetworkarea.c: Switch from ssize_t to uintptr_t for
bsp_get_work_area() since the work area is larger than a single
allocatable object.
2009-05-03 Joel Sherrill <joel.sherrill@oarcorp.com>
* shared/start.S: Checked and OK.

View File

@@ -25,9 +25,9 @@ extern uint32_t rdb_start;
*/
void bsp_get_work_area(
void **work_area_start,
ssize_t *work_area_size,
uintptr_t *work_area_size,
void **heap_start,
ssize_t *heap_size
uintptr_t *heap_size
)
{
/* must be identical to STACK_SIZE in start.S */