Changeset f34c09e in mainline
- Timestamp:
- 2010-05-20T20:59:05Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b7aa7c5
- Parents:
- 769a128
- Location:
- kernel/arch/arm32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/include/interrupt.h
r769a128 rf34c09e 52 52 extern void interrupts_restore(ipl_t ipl); 53 53 extern ipl_t interrupts_read(void); 54 extern bool interrupts_disabled(void); 54 55 55 56 -
kernel/arch/arm32/src/interrupt.c
r769a128 rf34c09e 97 97 } 98 98 99 /** Check interrupts state. 100 * 101 * @return True if interrupts are disabled. 102 * 103 */ 104 bool interrupts_disabled(void) 105 { 106 return current_status_reg_read() & STATUS_REG_IRQ_DISABLED_BIT; 107 } 108 99 109 /** Initialize basic tables for exception dispatching 100 110 * and starts the timer.
Note:
See TracChangeset
for help on using the changeset viewer.