2000-11-01 Joel Sherrill <joel@OARcorp.com>

* 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.
This commit is contained in:
Joel Sherrill
2000-11-01 21:22:04 +00:00
parent 978d328264
commit 12c074d8bd
2 changed files with 11 additions and 18 deletions

View File

@@ -1,3 +1,11 @@
2000-11-01 Joel Sherrill <joel@OARcorp.com>
* 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.
2000-10-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.

View File

@@ -17,21 +17,15 @@
* $Id$
*/
#include <string.h>
#include <bsp.h>
#include <rtems/libio.h>
#include <libcsupport.h>
#include <string.h>
#include <rtems/libcsupport.h>
#include <info.h>
#ifdef STACK_CHECKER_ON
#include <stackchk.h>
#endif
boardinfo_t M860_binfo;
/*
* The original table from the application and our copy of it with
* some changes.
@@ -94,15 +88,6 @@ bsp_pretasking_hook(void)
/* set up a 256K heap */
bsp_libc_init((void *) heap_start, 256 * 1024, 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
#ifdef RTEMS_DEBUG
rtems_debug_enable( RTEMS_DEBUG_ALL_MASK );
#endif