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:
Joel Sherrill
2002-09-14 19:39:16 +00:00
parent 0c0d089377
commit 536f5f949e
10 changed files with 30 additions and 5 deletions

View File

@@ -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.

View File

@@ -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 );

View File

@@ -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.

View File

@@ -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 );

View File

@@ -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.

View File

@@ -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 );

View File

@@ -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.

View File

@@ -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 );

View File

@@ -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.

View File

@@ -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 );