2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>

* startup/bspstart.c: Convert to using c99 fixed size types.
This commit is contained in:
Ralf Corsepius
2004-03-31 02:59:43 +00:00
parent 66c373bf01
commit 3d04f8ba1e
2 changed files with 7 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* startup/bspstart.c: Convert to using c99 fixed size types.
2004-02-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Reflect changes to bsp.am.

View File

@@ -81,7 +81,7 @@ void *bsp_ram_end = (void *)RAM_END; /* first addr behind avail. ram area */
*/
void bsp_postdriver_hook(void);
void bsp_libc_init( void *, unsigned32, int );
void bsp_libc_init( void *, uint32_t, int );
/*
*
@@ -114,9 +114,9 @@ void bsp_predriver_hook(void)
void bsp_pretasking_hook(void)
{
extern int _end;
rtems_unsigned32 heap_start;
uint32_t heap_start;
heap_start = (rtems_unsigned32) &_end;
heap_start = (uint32_t) &_end;
if (heap_start & (CPU_ALIGNMENT-1))
heap_start = (heap_start + CPU_ALIGNMENT) & ~(CPU_ALIGNMENT-1);