Changeset b3b7e14a in mainline for kernel/arch/ppc32/src/interrupt.c
- Timestamp:
- 2010-06-11T15:31:03Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 214ec25c
- Parents:
- be06914
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/src/interrupt.c
rbe06914 rb3b7e14a 101 101 void interrupt_init(void) 102 102 { 103 exc_register(VECTOR_DATA_STORAGE, "data_storage", pht_refill); 104 exc_register(VECTOR_INSTRUCTION_STORAGE, "instruction_storage", pht_refill); 105 exc_register(VECTOR_EXTERNAL, "external", exception_external); 106 exc_register(VECTOR_DECREMENTER, "timer", exception_decrementer); 103 exc_register(VECTOR_DATA_STORAGE, "data_storage", true, 104 pht_refill); 105 exc_register(VECTOR_INSTRUCTION_STORAGE, "instruction_storage", true, 106 pht_refill); 107 exc_register(VECTOR_EXTERNAL, "external", true, 108 exception_external); 109 exc_register(VECTOR_DECREMENTER, "timer", true, 110 exception_decrementer); 107 111 } 108 112
Note:
See TracChangeset
for help on using the changeset viewer.