forked from pool/glibc
31 lines
1008 B
Diff
31 lines
1008 B
Diff
|
2018-02-10 Dmitry V. Levin <ldv@altlinux.org>
|
||
|
|
||
|
[BZ #22433]
|
||
|
* sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h (__ptrace_request):
|
||
|
Remove arm-specific PTRACE_GET_THREAD_AREA, PTRACE_GETHBPREGS,
|
||
|
and PTRACE_SETHBPREGS.
|
||
|
|
||
|
Index: glibc-2.27/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h
|
||
|
===================================================================
|
||
|
--- glibc-2.27.orig/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h
|
||
|
+++ glibc-2.27/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h
|
||
|
@@ -78,18 +78,10 @@ enum __ptrace_request
|
||
|
PTRACE_DETACH = 17,
|
||
|
#define PT_DETACH PTRACE_DETACH
|
||
|
|
||
|
- PTRACE_GET_THREAD_AREA = 22,
|
||
|
-
|
||
|
/* Continue and stop at the next entry to or return from syscall. */
|
||
|
PTRACE_SYSCALL = 24,
|
||
|
#define PT_SYSCALL PTRACE_SYSCALL
|
||
|
|
||
|
- /* Get all hardware breakpoint registers. */
|
||
|
- PTRACE_GETHBPREGS = 29,
|
||
|
-
|
||
|
- /* Set all hardware breakpoint registers. */
|
||
|
- PTRACE_SETHBPREGS = 30,
|
||
|
-
|
||
|
/* Set ptrace filter options. */
|
||
|
PTRACE_SETOPTIONS = 0x4200,
|
||
|
#define PT_SETOPTIONS PTRACE_SETOPTIONS
|