kdebug.h 367 B

123456789101112131415161718
  1. #ifndef __ASM_SH_KDEBUG_H
  2. #define __ASM_SH_KDEBUG_H
  3. /* Grossly misnamed. */
  4. enum die_val {
  5. DIE_TRAP,
  6. DIE_NMI,
  7. DIE_OOPS,
  8. DIE_BREAKPOINT,
  9. DIE_SSTEP,
  10. };
  11. /* arch/sh/kernel/dumpstack.c */
  12. extern void printk_address(unsigned long address, int reliable);
  13. extern void dump_mem(const char *str, unsigned long bottom, unsigned long top);
  14. #endif /* __ASM_SH_KDEBUG_H */