ptrace.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* `ptrace' debugger support interface. Linux/microblaze version.
  2. Copyright (C) 2001, 2002 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef _SYS_PTRACE_H
  16. #define _SYS_PTRACE_H 1
  17. #include <features.h>
  18. __BEGIN_DECLS
  19. /* Type of the REQUEST argument to `ptrace.' */
  20. enum __ptrace_request
  21. {
  22. /* Indicate that the process making this request should be traced.
  23. All signals received by this process can be intercepted by its
  24. parent, and its parent can use the other `ptrace' requests. */
  25. PTRACE_TRACEME = 0,
  26. #define PT_TRACE_ME PTRACE_TRACEME
  27. /* Return the word in the process's text space at address ADDR. */
  28. PTRACE_PEEKTEXT = 1,
  29. #define PT_READ_I PTRACE_PEEKTEXT
  30. /* Return the word in the process's data space at address ADDR. */
  31. PTRACE_PEEKDATA = 2,
  32. #define PT_READ_D PTRACE_PEEKDATA
  33. /* Return the word in the process's user area at offset ADDR. */
  34. PTRACE_PEEKUSER = 3,
  35. #define PT_READ_U PTRACE_PEEKUSER
  36. /* Write the word DATA into the process's text space at address ADDR. */
  37. PTRACE_POKETEXT = 4,
  38. #define PT_WRITE_I PTRACE_POKETEXT
  39. /* Write the word DATA into the process's data space at address ADDR. */
  40. PTRACE_POKEDATA = 5,
  41. #define PT_WRITE_D PTRACE_POKEDATA
  42. /* Write the word DATA into the process's user area at offset ADDR. */
  43. PTRACE_POKEUSER = 6,
  44. #define PT_WRITE_U PTRACE_POKEUSER
  45. /* Continue the process. */
  46. PTRACE_CONT = 7,
  47. #define PT_CONTINUE PTRACE_CONT
  48. /* Kill the process. */
  49. PTRACE_KILL = 8,
  50. #define PT_KILL PTRACE_KILL
  51. /* Single step the process. */
  52. PTRACE_SINGLESTEP = 9,
  53. #define PT_STEP PTRACE_SINGLESTEP
  54. /* Get all general purpose registers used by a processes.
  55. This is not supported on all machines. */
  56. PTRACE_GETREGS = 12,
  57. #define PT_GETREGS PTRACE_GETREGS
  58. /* Set all general purpose registers used by a processes.
  59. This is not supported on all machines. */
  60. PTRACE_SETREGS = 13,
  61. #define PT_SETREGS PTRACE_SETREGS
  62. /* Get all floating point registers used by a processes.
  63. This is not supported on all machines. */
  64. PTRACE_GETFPREGS = 14,
  65. #define PT_GETFPREGS PTRACE_GETFPREGS
  66. /* Set all floating point registers used by a processes.
  67. This is not supported on all machines. */
  68. PTRACE_SETFPREGS = 15,
  69. #define PT_SETFPREGS PTRACE_SETFPREGS
  70. /* Attach to a process that is already running. */
  71. PTRACE_ATTACH = 16,
  72. #define PT_ATTACH PTRACE_ATTACH
  73. /* Detach from a process attached to with PTRACE_ATTACH. */
  74. PTRACE_DETACH = 17,
  75. #define PT_DETACH PTRACE_DETACH
  76. /* Continue and stop at the next (return from) syscall. */
  77. PTRACE_SYSCALL = 24
  78. #define PT_SYSCALL PTRACE_SYSCALL
  79. };
  80. /* Perform process tracing functions. REQUEST is one of the values
  81. above, and determines the action to be taken.
  82. For all requests except PTRACE_TRACEME, PID specifies the process to be
  83. traced.
  84. PID and the other arguments described above for the various requests should
  85. appear (those that are used for the particular request) as:
  86. pid_t PID, void *ADDR, int DATA, void *ADDR2
  87. after REQUEST. */
  88. extern long int ptrace (enum __ptrace_request __request, ...) __THROW;
  89. __END_DECLS
  90. #endif /* _SYS_PTRACE_H */