forked from Imagelibrary/rtems
2008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* startup/bspgetworkarea.c: Change size_t to ssize_t on bsp_get_work_area(). On 16-bit architectures, size_t can be 16-bits which would limit the work area to 64K.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* startup/bspgetworkarea.c: Change size_t to ssize_t on
|
||||
bsp_get_work_area(). On 16-bit architectures, size_t can be 16-bits
|
||||
which would limit the work area to 64K.
|
||||
|
||||
2008-09-30 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* Makefile.am: Eliminate bsp.am. Cleanup.
|
||||
|
||||
@@ -14,10 +14,10 @@
|
||||
#include <rtems/libio.h>
|
||||
|
||||
void bsp_get_work_area(
|
||||
void **work_area_start,
|
||||
size_t *work_area_size,
|
||||
void **heap_start,
|
||||
size_t *heap_size
|
||||
void **work_area_start,
|
||||
ssize_t *work_area_size,
|
||||
void **heap_start,
|
||||
ssize_t *heap_size
|
||||
)
|
||||
{
|
||||
uintptr_t workspace_ptr;
|
||||
|
||||
Reference in New Issue
Block a user