summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/unix/posix/startup/bspstart.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 05:19:16 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 05:19:16 +0000
commit40d6543b56b0d9118c0f5714b158a509b1f6a056 (patch)
tree3747a7ed49a967d69c7c35eea159c91b5ccc0c4f /c/src/lib/libbsp/unix/posix/startup/bspstart.c
parent2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-40d6543b56b0d9118c0f5714b158a509b1f6a056.tar.bz2
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* clock/clock.c, include/bsp.h, shmsupp/cause_intr.c, shmsupp/getcfg.c, shmsupp/lock.c, startup/bspstart.c: Convert to using c99 fixed size types.
Diffstat (limited to 'c/src/lib/libbsp/unix/posix/startup/bspstart.c')
-rw-r--r--c/src/lib/libbsp/unix/posix/startup/bspstart.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/c/src/lib/libbsp/unix/posix/startup/bspstart.c b/c/src/lib/libbsp/unix/posix/startup/bspstart.c
index 48eb5f8bd1..f288ecc22d 100644
--- a/c/src/lib/libbsp/unix/posix/startup/bspstart.c
+++ b/c/src/lib/libbsp/unix/posix/startup/bspstart.c
@@ -34,8 +34,8 @@ extern rtems_configuration_table Configuration;
rtems_configuration_table BSP_Configuration;
rtems_multiprocessing_table BSP_Multiprocessing;
rtems_cpu_table Cpu_table;
-rtems_unsigned32 bsp_isr_level;
-rtems_unsigned32 Heap_size;
+uint32_t bsp_isr_level;
+uint32_t Heap_size;
int rtems_argc;
char **rtems_argv;
@@ -53,14 +53,14 @@ char **rtems_argv;
* script to bump it without recompiling rtems
*/
-rtems_unsigned32 CPU_CLICKS_PER_TICK;
+uint32_t CPU_CLICKS_PER_TICK;
/*
* Use the shared implementations of the following routines
*/
void bsp_postdriver_hook(void);
-void bsp_libc_init( void *, unsigned32, int );
+void bsp_libc_init( void *, uint32_t, int );
/*
* Function: bsp_pretasking_hook
@@ -118,7 +118,7 @@ void bsp_postdriver_hook(void)
void bsp_start(void)
{
- unsigned32 workspace_ptr;
+ uint32_t workspace_ptr;
/*
* Copy the table (normally done in shared main).
@@ -173,7 +173,7 @@ void bsp_start(void)
*/
workspace_ptr =
- (unsigned32) sbrk(BSP_Configuration.work_space_size + CPU_ALIGNMENT);
+ (uint32_t) sbrk(BSP_Configuration.work_space_size + CPU_ALIGNMENT);
workspace_ptr += CPU_ALIGNMENT - 1;
workspace_ptr &= ~(CPU_ALIGNMENT - 1);