Main Page | Alphabetical List | Data Structures | Directories | File List | Data Fields | Globals

linux/ptrace.h

Go to the documentation of this file.
00001 #ifndef _LINUX_PTRACE_H
00002 #define _LINUX_PTRACE_H
00003 /* ptrace.h */
00004 /* structs and defines to help the user use the ptrace system call. */
00005 
00006 /* has the defines to get at the registers. */
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