summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-11-01 21:22:48 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-11-01 21:22:48 +0000
commitfed03bc9e40b496f63d9bc8525b16deb3c1a48da (patch)
treea4c5ad5220f0d3fed34f7605dc4821d1e19b4eb6
parent2000-11-01 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-fed03bc9e40b496f63d9bc8525b16deb3c1a48da.tar.bz2
2000-11-01 Joel Sherrill <joel@OARcorp.com>
* startup/bspstart.c, startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h, and libcsupport.h moved from libc to lib/include/rtems and now must be referenced as <rtems/XXX.h>. Header file order was cleaned up while doing this. Also removed obsolete references to STACK_CHECKER_ON.
-rw-r--r--c/src/lib/libbsp/powerpc/mbx8xx/startup/bspstart.c20
1 files changed, 3 insertions, 17 deletions
diff --git a/c/src/lib/libbsp/powerpc/mbx8xx/startup/bspstart.c b/c/src/lib/libbsp/powerpc/mbx8xx/startup/bspstart.c
index 4f2f616184..7e6a7ae9cf 100644
--- a/c/src/lib/libbsp/powerpc/mbx8xx/startup/bspstart.c
+++ b/c/src/lib/libbsp/powerpc/mbx8xx/startup/bspstart.c
@@ -19,16 +19,11 @@
* $Id$
*/
+#include <string.h>
+
#include <bsp.h>
#include <rtems/libio.h>
-
-#include <libcsupport.h>
-
-#include <string.h>
-
-#ifdef STACK_CHECKER_ON
-#include <stackchk.h>
-#endif
+#include <rtems/libcsupport.h>
/*
* The original table from the application (in ROM) and our copy of it with
@@ -87,15 +82,6 @@ void bsp_pretasking_hook(void)
bsp_libc_init( &_HeapStart, &_HeapEnd - &_HeapStart, 0 );
-#ifdef STACK_CHECKER_ON
- /*
- * Initialize the stack bounds checker
- * We can either turn it on here or from the app.
- */
-
- Stack_check_Initialize();
-#endif /* STACK_CHECKER_ON */
-
#ifdef RTEMS_DEBUG
rtems_debug_enable( RTEMS_DEBUG_ALL_MASK );
#endif