[PATCH 2/2] delete old PTRACE_{PEEK,POKE}USR logic
Mike Frysinger
vapier at gentoo.org
Tue Dec 31 06:13:28 UTC 2013
The code base has settled on PTRACE_{PEEK,POKE}USER (with an E) and has
logic in defs.h to make sure it's set sanely. Delete this old logic as
the defs.h takes care of it now.
* process.c: Delete PTRACE_PEEKUSR/PTRACE_POKEUSR defines.
* signal.c: Likewise.
---
process.c | 6 ------
signal.c | 6 ------
2 files changed, 12 deletions(-)
diff --git a/process.c b/process.c
index 8b3d2c7..5a648a9 100644
--- a/process.c
+++ b/process.c
@@ -47,12 +47,6 @@
#ifdef HAVE_SYS_REG_H
# include <sys/reg.h>
-# ifndef PTRACE_PEEKUSR
-# define PTRACE_PEEKUSR PTRACE_PEEKUSER
-# endif
-# ifndef PTRACE_POKEUSR
-# define PTRACE_POKEUSR PTRACE_POKEUSER
-# endif
#endif
#ifdef HAVE_LINUX_PTRACE_H
diff --git a/signal.c b/signal.c
index 3a11b8a..a41748e 100644
--- a/signal.c
+++ b/signal.c
@@ -37,12 +37,6 @@
#ifdef HAVE_SYS_REG_H
# include <sys/reg.h>
-# ifndef PTRACE_PEEKUSR
-# define PTRACE_PEEKUSR PTRACE_PEEKUSER
-# endif
-# ifndef PTRACE_POKEUSR
-# define PTRACE_POKEUSR PTRACE_POKEUSER
-# endif
#elif defined(HAVE_LINUX_PTRACE_H)
# undef PTRACE_SYSCALL
# ifdef HAVE_STRUCT_IA64_FPREG
--
1.8.4.3
More information about the Strace-devel
mailing list