00001 #ifndef _LINUX_PTRACE_H
00002 #define _LINUX_PTRACE_H
00003
00004
00005
00006
00007
00008 #define PTRACE_TRACEME 0
00009 #define PTRACE_PEEKTEXT 1
00010 #define PTRACE_PEEKDATA 2
00011 #define PTRACE_PEEKUSR 3
00012 #define PTRACE_POKETEXT 4
00013 #define PTRACE_POKEDATA 5
00014 #define PTRACE_POKEUSR 6
00015 #define PTRACE_CONT 7
00016 #define PTRACE_KILL 8
00017 #define PTRACE_SINGLESTEP 9
00018
00019 #define PTRACE_ATTACH 0x10
00020 #define PTRACE_DETACH 0x11
00021
00022 #define PTRACE_SYSCALL 24
00023
00024 #include <asm/ptrace.h>
00025
00026 #endif