kdebug.h 348 B

1234567891011121314151617
  1. #ifndef __ASM_AVR32_KDEBUG_H
  2. #define __ASM_AVR32_KDEBUG_H
  3. #include <linux/notifier.h>
  4. /* Grossly misnamed. */
  5. enum die_val {
  6. DIE_FAULT,
  7. DIE_BREAKPOINT,
  8. DIE_SSTEP,
  9. DIE_PAGE_FAULT,
  10. };
  11. int register_page_fault_notifier(struct notifier_block *nb);
  12. int unregister_page_fault_notifier(struct notifier_block *nb);
  13. #endif /* __ASM_AVR32_KDEBUG_H */