blob: 5f0cd1732fb59e983d11c7096af9f009be2aa94b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
--- strace-4.8.orig/defs.h 2013-05-14 16:10:42.000000000 +0200
+++ strace-4.8/defs.h 2013-10-24 18:52:25.000000000 +0200
@@ -155,14 +155,14 @@ extern char *stpcpy(char *dst, const cha
|| defined(METAG) \
|| defined(TILE) \
|| defined(XTENSA) \
- ) && defined(__GLIBC__)
+ ) && defined(__linux__)
# include <sys/ptrace.h>
#else
/* Work around awkward prototype in ptrace.h. */
# define ptrace xptrace
# include <sys/ptrace.h>
# undef ptrace
-# ifdef POWERPC
+# if defined(POWERPC) || defined(ARM)
# define __KERNEL__
# include <asm/ptrace.h>
# undef __KERNEL__
@@ -222,11 +222,6 @@ extern long ptrace(int, int, char *, lon
# define PTRACE_EVENT_EXIT 6
#endif
-#if !defined(__GLIBC__)
-# define PTRACE_PEEKUSER PTRACE_PEEKUSR
-# define PTRACE_POKEUSER PTRACE_POKEUSR
-#endif
-
#if USE_SEIZE
# undef PTRACE_SEIZE
# define PTRACE_SEIZE 0x4206
|