Changeset b3b7e14 in mainline for kernel/arch/ppc32/src/interrupt.c


Ignore:
Timestamp:
2010-06-11T15:31:03Z (14 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
214ec25c
Parents:
be06914
Message:

distinguish between "hot" and "cold" exceptions
display only "hot" exceptions by default
add top to help

File:
1 edited

Legend:

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

    rbe06914 rb3b7e14  
    101101void interrupt_init(void)
    102102{
    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);
    107111}
    108112
Note: See TracChangeset for help on using the changeset viewer.