Ignore:
Timestamp:
06/12/00 15:00:15 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
edeed26
Parents:
0ab65474
Message:

Merged from 4.5.0-beta3a

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/powerpc/shared/startup/bspstart.c

    r0ab65474 rdf49c60  
    7474 */
    7575#define INIT_STACK_SIZE 0x1000
    76 #define INTR_STACK_SIZE 0x4000
     76#define INTR_STACK_SIZE CONFIGURE_INTERRUPT_STACK_MEMORY
    7777
    7878void BSP_panic(char *s)
     
    303303   */
    304304
    305   Cpu_table.pretasking_hook             = bsp_pretasking_hook;    /* init libc, etc. */
    306   Cpu_table.postdriver_hook             = bsp_postdriver_hook;
    307   Cpu_table.do_zero_of_workspace        = TRUE;
    308   Cpu_table.interrupt_stack_size        = INTR_STACK_SIZE;
    309   Cpu_table.clicks_per_usec             = BSP_processor_frequency/(BSP_time_base_divisor * 1000);
    310   Cpu_table.exceptions_in_RAM           = TRUE;
     305  Cpu_table.pretasking_hook      = bsp_pretasking_hook;    /* init libc, etc. */
     306  Cpu_table.postdriver_hook      = bsp_postdriver_hook;
     307  Cpu_table.do_zero_of_workspace = TRUE;
     308  Cpu_table.interrupt_stack_size = CONFIGURE_INTERRUPT_STACK_MEMORY;
     309  Cpu_table.clicks_per_usec      = BSP_processor_frequency/(BSP_time_base_divisor * 1000);
     310  Cpu_table.exceptions_in_RAM    = TRUE;
    311311
    312312#ifdef SHOW_MORE_INIT_SETTINGS
     
    324324
    325325  /*
    326    *  Account for the console's resources
    327    */
    328 
    329   console_reserve_resources( &BSP_Configuration );
    330   /*
    331326   * Initalize RTEMS IRQ system
    332327   */
Note: See TracChangeset for help on using the changeset viewer.