Changeset 38e4a916 in rtems for c/src/lib/libbsp/shared/bootcard.c
- Timestamp:
- 07/13/99 14:54:16 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 49a90508
- Parents:
- 09ea257c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/shared/bootcard.c
r09ea257c r38e4a916 26 26 extern rtems_configuration_table BSP_Configuration; 27 27 extern rtems_cpu_table Cpu_table; 28 29 /* Initialize C++ global Ctor/Dtor and initializes exception handling. */ 30 #ifdef USE_INIT_FINI 31 extern void _fini( void ); 32 extern void _init( void ); 33 #endif 28 34 29 35 rtems_interrupt_level bsp_isr_level; … … 80 86 * are any. 81 87 */ 88 #ifdef USE_INIT_FINI 89 atexit( _fini ); 90 _init(); 91 #endif 82 92 83 93 status = main(argc, argv);
Note: See TracChangeset
for help on using the changeset viewer.