Ignore:
Timestamp:
07/13/99 14:54:16 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
49a90508
Parents:
09ea257c
Message:

Patch from Rosimildo DaSilva? <rdasilva@…> to readd calls to
init() and fini() routines.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/shared/bootcard.c

    r09ea257c r38e4a916  
    2626extern rtems_configuration_table  BSP_Configuration;
    2727extern rtems_cpu_table            Cpu_table;
     28
     29/* Initialize C++ global Ctor/Dtor and initializes exception handling. */
     30#ifdef USE_INIT_FINI
     31extern void _fini( void );
     32extern void _init( void );
     33#endif
    2834
    2935rtems_interrupt_level bsp_isr_level;
     
    8086   *  are any.
    8187   */
     88#ifdef USE_INIT_FINI
     89   atexit( _fini );
     90   _init();
     91#endif
    8292
    8393  status = main(argc, argv);
Note: See TracChangeset for help on using the changeset viewer.