Changeset b3b7e14a in mainline for kernel/arch/amd64/src/debugger.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/amd64/src/debugger.c

    rbe06914 rb3b7e14a  
    333333#endif /* CONFIG_KCONSOLE */
    334334       
    335         exc_register(VECTOR_DEBUG, "debugger", debug_exception);
     335        exc_register(VECTOR_DEBUG, "debugger", true,
     336            debug_exception);
     337       
    336338#ifdef CONFIG_SMP
    337         exc_register(VECTOR_DEBUG_IPI, "debugger_smp", debug_ipi);
     339        exc_register(VECTOR_DEBUG_IPI, "debugger_smp", true,
     340            debug_ipi);
    338341#endif /* CONFIG_SMP */
    339342}
Note: See TracChangeset for help on using the changeset viewer.