xmon.h 207 B

123456789101112
  1. #ifndef __PPC_XMON_H
  2. #define __PPC_XMON_H
  3. #ifdef __KERNEL__
  4. struct pt_regs;
  5. extern int xmon(struct pt_regs *excp);
  6. extern void xmon_printf(const char *fmt, ...);
  7. extern void xmon_init(int);
  8. #endif
  9. #endif