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

* shared/startup/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:23:59 +00:00
parent 1cf6593efa
commit ca427f31d8
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/startup/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-05 Jennifer Averett <jennifer.averett@OARcorp.com> 2009-05-05 Jennifer Averett <jennifer.averett@OARcorp.com>
* shared/pci/pci.c: Removed warnings. * shared/pci/pci.c: Removed warnings.

View File

@@ -24,10 +24,10 @@ extern uintptr_t _bsp_sbrk_init(uintptr_t, uintptr_t*);
* Heap. * Heap.
*/ */
void bsp_get_work_area( void bsp_get_work_area(
void **work_area_start, void **work_area_start,
ssize_t *work_area_size, uintptr_t *work_area_size,
void **heap_start, void **heap_start,
ssize_t *heap_size uintptr_t *heap_size
) )
{ {
uintptr_t work_size; uintptr_t work_size;