forked from Imagelibrary/rtems
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:
@@ -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.
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user