Changeset 12c074d8 in rtems


Ignore:
Timestamp:
11/01/00 21:22:04 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
fd152eb2
Parents:
978d328
Message:

2000-11-01 Joel Sherrill <joel@…>

  • 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.
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  
     12000-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
    192000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    210
  • c/src/lib/libbsp/powerpc/eth_comm/startup/bspstart.c

    r978d328 r12c074d8  
    1818 */
    1919
     20#include <string.h>
     21
    2022#include <bsp.h>
    2123#include <rtems/libio.h>
    22  
    23 #include <libcsupport.h>
    24  
    25 #include <string.h>
     24#include <rtems/libcsupport.h>
    2625#include <info.h>
    2726 
    28 #ifdef STACK_CHECKER_ON
    29 #include <stackchk.h>
    30 #endif
    31 
    3227boardinfo_t M860_binfo;
    33 
    3428
    3529/*
     
    9488  /* set up a 256K heap */
    9589  bsp_libc_init((void *) heap_start, 256 * 1024, 0);
    96  
    97 #ifdef STACK_CHECKER_ON
    98   /*
    99    *  Initialize the stack bounds checker
    100    *  We can either turn it on here or from the app.
    101    */
    102  
    103   Stack_check_Initialize();
    104 #endif
    10590 
    10691#ifdef RTEMS_DEBUG
Note: See TracChangeset for help on using the changeset viewer.