Changeset a0d22251 in rtems


Ignore:
Timestamp:
02/11/09 19:30:24 (15 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 5, master
Children:
65e8f25
Parents:
819ca0e1
Message:

2009-02-11 Joel Sherrill <joel.sherrill@…>

  • sapi/src/exinit.c: Interrupts are guaranteed to be disabled by boot_card(), do not do it here as well.
Location:
cpukit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    r819ca0e1 ra0d22251  
     12009-02-11      Joel Sherrill <joel.sherrill@oarcorp.com>
     2
     3        * sapi/src/exinit.c: Interrupts are guaranteed to be disabled by
     4        boot_card(), do not do it here as well.
     5
    162009-02-11      Ralf Corsépius <ralf.corsepius@rtems.org>
    27
  • cpukit/sapi/src/exinit.c

    r819ca0e1 ra0d22251  
    6464void rtems_initialize_data_structures(void)
    6565{
    66   rtems_interrupt_level  bsp_level;
    67 
    6866  /*
    6967   *  Dispatching and interrupts are disabled until the end of the
    7068   *  initialization sequence.  This prevents an inadvertent context
    7169   *  switch before the executive is initialized.
    72    */
    73   _ISR_Disable( bsp_level );
     70   *
     71   *  WARNING: Interrupts should have been disabled by the BSP and
     72   *           are disabled by boot_card().
     73   */
    7474
    7575  /*
Note: See TracChangeset for help on using the changeset viewer.