home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / gdb-4.9 / gdb / vx-share / ptrace.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-12  |  433 b   |  17 lines

  1. /* Ptrace request codes implemented by the VxWorks remote debug protocol.
  2.    These values match those used by SunOS in some old release.  */
  3.  
  4. enum ptracereq {
  5.     PTRACE_GETREGS        = 12,
  6.     PTRACE_GETFPREGS    = 14,
  7.     PTRACE_SETREGS        = 13,
  8.     PTRACE_SETFPREGS    = 15,
  9.     PTRACE_WRITEDATA    = 17,
  10.     PTRACE_READDATA        = 16,
  11.     PTRACE_SINGLESTEP    = 9,
  12.     PTRACE_CONT        = 7,
  13.     PTRACE_ATTACH        = 10,
  14.     PTRACE_DETACH        = 11,
  15.     PTRACE_KILL        = 8    /* no trailing comma */
  16. };
  17.