ptrace.h revision 3458456ffbf0b6d85e1818dea7cbeacc8b1d2298
1#undef PTRACE_GETREGS
2#undef PTRACE_SETREGS
3#undef PTRACE_GETFPREGS
4#undef PTRACE_SETFPREGS
5#include <sys/ptrace.h>
6#ifndef PTRACE_SUNDETACH
7#define PTRACE_SUNDETACH 11
8#endif
9#undef PT_DETACH
10#undef PTRACE_DETACH
11#define PT_DETACH PTRACE_SUNDETACH
12#define PTRACE_DETACH PTRACE_SUNDETACH
13
14#include <asm/ptrace.h>
15
16typedef struct {
17	int valid;
18	struct pt_regs regs;
19	unsigned int func_arg[6];
20	unsigned int sysc_arg[6];
21} proc_archdep;
22