Changeset fd152eb2 in rtems
- Timestamp:
- 11/01/00 21:22:47 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- fed03bc
- Parents:
- 12c074d8
- Location:
- c/src/lib/libbsp/powerpc/mbx8xx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/mbx8xx/ChangeLog
r12c074d8 rfd152eb2 1 2000-11-01 Joel Sherrill <joel@OARcorp.com> 2 3 * startup/bspstart.c, startup/bspstart.c: assoc.h, error.h, libio_.h, 4 libio.h, and libcsupport.h moved from libc to lib/include/rtems and 5 now must be referenced as <rtems/XXX.h>. Header file order 6 was cleaned up while doing this. 7 Also removed obsolete references to STACK_CHECKER_ON. 8 1 9 2000-10-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 10 -
c/src/lib/libbsp/powerpc/mbx8xx/startup/bspstart.c.nocache
r12c074d8 rfd152eb2 20 20 */ 21 21 22 #include <string.h> 23 22 24 #include <bsp.h> 23 25 #include <rtems/libio.h> 26 #include <rtems/libcsupport.h> 24 27 25 #include <libcsupport.h>26 27 #include <string.h>28 29 #ifdef STACK_CHECKER_ON30 #include <stackchk.h>31 #endif32 33 28 /* 34 29 * The original table from the application (in ROM) and our copy of it with … … 87 82 88 83 bsp_libc_init( &_HeapStart, &_HeapEnd - &_HeapStart, 0 ); 89 90 #ifdef STACK_CHECKER_ON91 /*92 * Initialize the stack bounds checker93 * We can either turn it on here or from the app.94 */95 96 Stack_check_Initialize();97 #endif /* STACK_CHECKER_ON */98 84 99 85 #ifdef RTEMS_DEBUG
Note: See TracChangeset
for help on using the changeset viewer.