summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/armulator/startup/bspstart.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-12-06 15:35:55 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-12-06 15:35:55 +0000
commit1668178f0707df5379afd89620829b3768dced57 (patch)
treea6950a0ce5b3d5d13644e27ca082cdf37049de8e /c/src/lib/libbsp/arm/armulator/startup/bspstart.c
parent2000-12-06 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-1668178f0707df5379afd89620829b3768dced57.tar.bz2
2000-12-06 Joel Sherrill <joel@OARcorp.com>
* startup/bspstart.c: Removed unused variables ramSpace and _end. Added prototype for initialize_monitor_handles(). * startup/syscalls.c: Added casts and removed unused variables to eliminate warnings.
Diffstat (limited to 'c/src/lib/libbsp/arm/armulator/startup/bspstart.c')
-rw-r--r--c/src/lib/libbsp/arm/armulator/startup/bspstart.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/c/src/lib/libbsp/arm/armulator/startup/bspstart.c b/c/src/lib/libbsp/arm/armulator/startup/bspstart.c
index 19da49f3ec..343438aad3 100644
--- a/c/src/lib/libbsp/arm/armulator/startup/bspstart.c
+++ b/c/src/lib/libbsp/arm/armulator/startup/bspstart.c
@@ -60,7 +60,6 @@ void bsp_pretasking_hook(void)
extern int HeapSize;
void *heapStart = &HeapBase;
unsigned long heapSize = (unsigned long)&HeapSize;
- unsigned long ramSpace;
bsp_libc_init(heapStart, heapSize, 0);
@@ -78,8 +77,8 @@ void bsp_pretasking_hook(void)
void bsp_start( void )
{
- extern int _end;
extern int WorkspaceBase;
+ void initialize_monitor_handles(void);
initialize_monitor_handles();
Cpu_table.pretasking_hook = bsp_pretasking_hook; /* init libc, etc. */