* target.h: Add enum target_waitkind, enum target_signal, and
[deliverable/binutils-gdb.git] / gdb / vx-share / ptrace.h
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 };
This page took 0.030062 seconds and 4 git commands to generate.