Changeset 12c074d8 in rtems
- Timestamp:
- 11/01/00 21:22:04 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- fd152eb2
- Parents:
- 978d328
- Location:
- c/src/lib/libbsp/powerpc/eth_comm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/eth_comm/ChangeLog
r978d328 r12c074d8 1 2000-11-01 Joel Sherrill <joel@OARcorp.com> 2 3 * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h, and 4 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/eth_comm/startup/bspstart.c
r978d328 r12c074d8 18 18 */ 19 19 20 #include <string.h> 21 20 22 #include <bsp.h> 21 23 #include <rtems/libio.h> 22 23 #include <libcsupport.h> 24 25 #include <string.h> 24 #include <rtems/libcsupport.h> 26 25 #include <info.h> 27 26 28 #ifdef STACK_CHECKER_ON29 #include <stackchk.h>30 #endif31 32 27 boardinfo_t M860_binfo; 33 34 28 35 29 /* … … 94 88 /* set up a 256K heap */ 95 89 bsp_libc_init((void *) heap_start, 256 * 1024, 0); 96 97 #ifdef STACK_CHECKER_ON98 /*99 * Initialize the stack bounds checker100 * We can either turn it on here or from the app.101 */102 103 Stack_check_Initialize();104 #endif105 90 106 91 #ifdef RTEMS_DEBUG
Note: See TracChangeset
for help on using the changeset viewer.