diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2017-12-29 23:19:32 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2018-02-10 22:12:12 +0000 |
commit | 2fd4bbaa1446f1be700e10c526cf585a796c4991 (patch) | |
tree | 8099df17b2e682ede9e230c539e8acd84546fe27 /sysdeps/unix | |
parent | 402ecba487804e9196769f39a8d157847d3b3104 (diff) | |
download | glibc-2fd4bbaa1446f1be700e10c526cf585a796c4991.tar.gz glibc-2fd4bbaa1446f1be700e10c526cf585a796c4991.tar.xz glibc-2fd4bbaa1446f1be700e10c526cf585a796c4991.zip |
linux/aarch64: sync sys/ptrace.h with Linux 4.15 [BZ #22433]
Remove compat-specific constants that were never exported by kernel headers under these names. Before linux commit v3.7-rc1~16^2~1 they were exported with COMPAT_ prefix, and since that commit they are not exported at all. * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h (__ptrace_request): Remove arm-specific PTRACE_GET_THREAD_AREA, PTRACE_GETHBPREGS, and PTRACE_SETHBPREGS.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h b/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h index 4be45b95ff..444edbb702 100644 --- a/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h +++ b/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 |