Changeset df49c60 in rtems for c/src/lib/libbsp/powerpc/shared/startup/bspstart.c
- Timestamp:
- 06/12/00 15:00:15 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- edeed26
- Parents:
- 0ab65474
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/shared/startup/bspstart.c
r0ab65474 rdf49c60 74 74 */ 75 75 #define INIT_STACK_SIZE 0x1000 76 #define INTR_STACK_SIZE 0x400076 #define INTR_STACK_SIZE CONFIGURE_INTERRUPT_STACK_MEMORY 77 77 78 78 void BSP_panic(char *s) … … 303 303 */ 304 304 305 Cpu_table.pretasking_hook 306 Cpu_table.postdriver_hook 307 Cpu_table.do_zero_of_workspace 308 Cpu_table.interrupt_stack_size = INTR_STACK_SIZE;309 Cpu_table.clicks_per_usec 310 Cpu_table.exceptions_in_RAM 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; 311 311 312 312 #ifdef SHOW_MORE_INIT_SETTINGS … … 324 324 325 325 /* 326 * Account for the console's resources327 */328 329 console_reserve_resources( &BSP_Configuration );330 /*331 326 * Initalize RTEMS IRQ system 332 327 */
Note: See TracChangeset
for help on using the changeset viewer.