forked from Imagelibrary/rtems
2002-09-14 Joel Sherrill <joel@OARcorp.com>
* startup/bspstart.c: As part of fixing PR281 on gensh4, a review of all calls to bsp_libc_init() resulted in some cleanup here.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2002-09-14 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: As part of fixing PR281 on gensh4, a review
|
||||
of all calls to bsp_libc_init() resulted in some cleanup here.
|
||||
|
||||
2002-08-21 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* bsp_specs: Added support for -nostdlibs.
|
||||
|
||||
@@ -65,7 +65,7 @@ void bsp_libc_init( void *, unsigned32, int );
|
||||
|
||||
void bsp_pretasking_hook(void)
|
||||
{
|
||||
bsp_libc_init(&HeapStart, sizeof(unsigned32) * (&HeapEnd - &HeapStart), 0);
|
||||
bsp_libc_init(&HeapStart, (char *)&HeapEnd - (char *)&HeapStart, 0);
|
||||
|
||||
#ifdef RTEMS_DEBUG
|
||||
rtems_debug_enable( RTEMS_DEBUG_ALL_MASK );
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2002-09-14 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: As part of fixing PR281 on gensh4, a review
|
||||
of all calls to bsp_libc_init() resulted in some cleanup here.
|
||||
|
||||
2002-08-21 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* bsp_specs: Added support for -nostdlibs.
|
||||
|
||||
@@ -67,7 +67,7 @@ void bsp_libc_init( void *, unsigned32, int );
|
||||
|
||||
void bsp_pretasking_hook(void)
|
||||
{
|
||||
bsp_libc_init(&HeapStart, sizeof(unsigned32) * (&HeapEnd - &HeapStart), 0);
|
||||
bsp_libc_init(&HeapStart, (char *)&HeapEnd - (char *)&HeapStart, 0);
|
||||
|
||||
#ifdef RTEMS_DEBUG
|
||||
rtems_debug_enable( RTEMS_DEBUG_ALL_MASK );
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2002-09-14 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: As part of fixing PR281 on gensh4, a review
|
||||
of all calls to bsp_libc_init() resulted in some cleanup here.
|
||||
|
||||
2002-08-21 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* bsp_specs: Added support for -nostdlibs.
|
||||
|
||||
@@ -68,7 +68,7 @@ void bsp_libc_init( void *, unsigned32, int );
|
||||
|
||||
void bsp_pretasking_hook(void)
|
||||
{
|
||||
bsp_libc_init(&HeapStart, (&HeapEnd - &HeapStart), 0);
|
||||
bsp_libc_init(&HeapStart, (char *)&HeapEnd - (char *)&HeapStart, 0);
|
||||
|
||||
#ifdef RTEMS_DEBUG
|
||||
rtems_debug_enable( RTEMS_DEBUG_ALL_MASK );
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2002-09-14 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: As part of fixing PR281 on gensh4, a review
|
||||
of all calls to bsp_libc_init() resulted in some cleanup here.
|
||||
|
||||
2002-08-21 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* bsp_specs: Added support for -nostdlibs.
|
||||
|
||||
@@ -62,7 +62,7 @@ void bsp_libc_init( void *, unsigned32, int );
|
||||
|
||||
void bsp_pretasking_hook(void)
|
||||
{
|
||||
bsp_libc_init(&HeapStart, sizeof(unsigned32) * (&HeapEnd - &HeapStart), 0);
|
||||
bsp_libc_init(&HeapStart, (char *)&HeapEnd - (char *)&HeapStart, 0);
|
||||
|
||||
#ifdef RTEMS_DEBUG
|
||||
rtems_debug_enable( RTEMS_DEBUG_ALL_MASK );
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2002-09-14 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: As part of fixing PR281 on gensh4, a review
|
||||
of all calls to bsp_libc_init() resulted in some cleanup here.
|
||||
|
||||
2002-08-21 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* bsp_specs: Added support for -nostdlibs.
|
||||
|
||||
@@ -68,7 +68,7 @@ void bsp_libc_init( void *, unsigned32, int );
|
||||
|
||||
void bsp_pretasking_hook(void)
|
||||
{
|
||||
bsp_libc_init(&HeapStart, ((char *)&HeapEnd - (char *)&HeapStart), 0);
|
||||
bsp_libc_init(&HeapStart, (char *)&HeapEnd - (char *)&HeapStart, 0);
|
||||
|
||||
#ifdef RTEMS_DEBUG
|
||||
rtems_debug_enable( RTEMS_DEBUG_ALL_MASK );
|
||||
|
||||
Reference in New Issue
Block a user