Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/interrupt.c

    r646b996 rf34c09e  
    9797}
    9898
     99/** Check interrupts state.
     100 *
     101 * @return True if interrupts are disabled.
     102 *
     103 */
     104bool interrupts_disabled(void)
     105{
     106        return current_status_reg_read() & STATUS_REG_IRQ_DISABLED_BIT;
     107}
     108
    99109/** Initialize basic tables for exception dispatching
    100110 * and starts the timer.
Note: See TracChangeset for help on using the changeset viewer.