kgdb.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.kgdb.h 1.5 05/17/01 18:14:24 cort
  3.  */
  4. /*
  5.  * kgdb.h: Defines and declarations for serial line source level
  6.  *         remote debugging of the Linux kernel using gdb.
  7.  *
  8.  * PPC Mods (C) 1998 Michael Tesch (tesch@cs.wisc.edu)
  9.  *
  10.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  11.  */
  12. #ifdef __KERNEL__
  13. #ifndef _PPC_KGDB_H
  14. #define _PPC_KGDB_H
  15. #ifndef __ASSEMBLY__
  16. /* To initialize the serial, first thing called */
  17. extern void zs_kgdb_hook(int tty_num);
  18. /* To init the kgdb engine. (called by serial hook)*/
  19. extern void set_debug_traps(void);
  20. /* To enter the debugger explicitly. */
  21. extern void breakpoint(void);
  22. /* For taking exceptions
  23.  * these are defined in traps.c
  24.  */
  25. extern void (*debugger)(struct pt_regs *regs);
  26. extern int (*debugger_bpt)(struct pt_regs *regs);
  27. extern int (*debugger_sstep)(struct pt_regs *regs);
  28. extern int (*debugger_iabr_match)(struct pt_regs *regs);
  29. extern int (*debugger_dabr_match)(struct pt_regs *regs);
  30. extern void (*debugger_fault_handler)(struct pt_regs *regs);
  31. /* What we bring to the party */
  32. int kgdb_bpt(struct pt_regs *regs);
  33. int kgdb_sstep(struct pt_regs *regs);
  34. void kgdb(struct pt_regs *regs);
  35. int kgdb_iabr_match(struct pt_regs *regs);
  36. int kgdb_dabr_match(struct pt_regs *regs);
  37. static void kgdb_fault_handler(struct pt_regs *regs);
  38. static void handle_exception (struct pt_regs *regs);
  39. /*
  40.  * external low-level support routines (ie macserial.c)
  41.  */
  42. extern void kgdb_interruptible(int); /* control interrupts from serial */
  43. extern void putDebugChar(char);   /* write a single character      */
  44. extern char getDebugChar(void);   /* read and return a single char */
  45. #endif /* !(__ASSEMBLY__) */
  46. #endif /* !(_PPC_KGDB_H) */
  47. #endif /* __KERNEL__ */