mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-09 09:03:33 +00:00
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:
@@ -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>
|
2009-05-03 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
* shared/start.S: Checked and OK.
|
* shared/start.S: Checked and OK.
|
||||||
|
|||||||
@@ -25,9 +25,9 @@ extern uint32_t rdb_start;
|
|||||||
*/
|
*/
|
||||||
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
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
/* must be identical to STACK_SIZE in start.S */
|
/* must be identical to STACK_SIZE in start.S */
|
||||||
|
|||||||
Reference in New Issue
Block a user