forked from Imagelibrary/rtems
2008-10-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* shared/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>
|
||||||
|
|
||||||
|
* shared/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-23 Joel Sherrill <joel.sherrill@oarcorp.com>
|
2008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
* shared/bspclean.c: Removed.
|
* shared/bspclean.c: Removed.
|
||||||
|
|||||||
@@ -22,9 +22,9 @@
|
|||||||
*/
|
*/
|
||||||
void bsp_get_work_area(
|
void bsp_get_work_area(
|
||||||
void **work_area_start,
|
void **work_area_start,
|
||||||
size_t *work_area_size,
|
ssize_t *work_area_size,
|
||||||
void **heap_start,
|
void **heap_start,
|
||||||
size_t *heap_size
|
ssize_t *heap_size
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
/* Tells us where to put the workspace in case remote debugger is present. */
|
/* Tells us where to put the workspace in case remote debugger is present. */
|
||||||
|
|||||||
Reference in New Issue
Block a user