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

* include/bsp.h, shmsupp/getcfg.c, startup/bspstart.c,
	timer/timer.c: Convert to using c99 fixed size types.
This commit is contained in:
Ralf Corsepius
2004-03-31 03:47:48 +00:00
parent 2a832d84ce
commit 3f71ac151b
5 changed files with 23 additions and 18 deletions

View File

@@ -31,14 +31,14 @@ extern rtems_configuration_table Configuration;
rtems_configuration_table BSP_Configuration;
rtems_cpu_table Cpu_table;
rtems_unsigned32 bsp_isr_level;
uint32_t bsp_isr_level;
/*
* Tells us where to put the workspace in case remote debugger is present.
*/
#if 0
extern rtems_unsigned32 rdb_start;
extern uint32_t rdb_start;
#endif
/*
@@ -46,7 +46,7 @@ extern rtems_unsigned32 rdb_start;
*/
void bsp_postdriver_hook(void);
void bsp_libc_init( void *, unsigned32, int );
void bsp_libc_init( void *, uint32_t, int );
/*
* bsp_pretasking_hook
@@ -58,10 +58,10 @@ void bsp_libc_init( void *, unsigned32, int );
void bsp_pretasking_hook(void)
{
extern int end;
rtems_unsigned32 heap_start;
rtems_unsigned32 heap_size;
uint32_t heap_start;
uint32_t heap_size;
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);