ptrace.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1994, 95, 96, 97, 98, 99, 2000 by Ralf Baechle
  7.  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  8.  */
  9. #ifndef _ASM_PTRACE_H
  10. #define _ASM_PTRACE_H
  11. /* 0 - 31 are integer registers, 32 - 63 are fp registers.  */
  12. #define FPR_BASE 32
  13. #define PC 64
  14. #define CAUSE 65
  15. #define BADVADDR 66
  16. #define MMHI 67
  17. #define MMLO 68
  18. #define FPC_CSR 69
  19. #define FPC_EIR 70
  20. #ifndef __ASSEMBLY__
  21. #define abi64_no_regargs
  22. unsigned long __dummy0,
  23. unsigned long __dummy1,
  24. unsigned long __dummy2,
  25. unsigned long __dummy3,
  26. unsigned long __dummy4,
  27. unsigned long __dummy5,
  28. unsigned long __dummy6,
  29. unsigned long __dummy7
  30. /*
  31.  * This struct defines the way the registers are stored on the stack during a
  32.  * system call/exception. As usual the registers k0/k1 aren't being saved.
  33.  */
  34. struct pt_regs {
  35. /* Saved main processor registers. */
  36. unsigned long regs[32];
  37. /* Other saved registers. */
  38. unsigned long lo;
  39. unsigned long hi;
  40. /*
  41.  * saved cp0 registers
  42.  */
  43. unsigned long cp0_epc;
  44. unsigned long cp0_badvaddr;
  45. unsigned long cp0_status;
  46. unsigned long cp0_cause;
  47. };
  48. #endif /* !__ASSEMBLY__ */
  49. /* Arbitrarily choose the same ptrace numbers as used by the Sparc code. */
  50. /* #define PTRACE_GETREGS 12 */
  51. /* #define PTRACE_SETREGS 13 */
  52. /* #define PTRACE_GETFPREGS 14 */
  53. /* #define PTRACE_SETFPREGS 15 */
  54. /* #define PTRACE_GETFPXREGS 18 */
  55. /* #define PTRACE_SETFPXREGS 19 */
  56. #define PTRACE_SETOPTIONS 21
  57. /* options set using PTRACE_SETOPTIONS */
  58. #define PTRACE_O_TRACESYSGOOD 0x00000001
  59. #ifdef __ASSEMBLY__
  60. #include <asm/offset.h>
  61. #endif /* !__ASSEMBLY__ */
  62. #ifdef __KERNEL__
  63. #ifndef __ASSEMBLY__
  64. #define instruction_pointer(regs) ((regs)->cp0_epc)
  65. #endif /* !__ASSEMBLY__ */
  66. #endif
  67. #endif /* _ASM_PTRACE_H */