diff options
author | Joseph Myers <joseph@codesourcery.com> | 2021-08-09 16:51:38 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2021-08-09 16:51:38 +0000 |
commit | 98149b16d645e9644a8e9b3d1f4b7932b9b193c5 (patch) | |
tree | 485baa22fe5b8f1cbcc222b150e38a6821585b09 /sysdeps/unix/sysv/linux/s390 | |
parent | b805aebd42364fe696e417808a700fdb9800c9e8 (diff) | |
download | glibc-98149b16d645e9644a8e9b3d1f4b7932b9b193c5.tar glibc-98149b16d645e9644a8e9b3d1f4b7932b9b193c5.tar.gz glibc-98149b16d645e9644a8e9b3d1f4b7932b9b193c5.tar.bz2 glibc-98149b16d645e9644a8e9b3d1f4b7932b9b193c5.zip |
Add PTRACE_GET_RSEQ_CONFIGURATION from Linux 5.13 to sys/ptrace.h
Linux 5.13 adds a PTRACE_GET_RSEQ_CONFIGURATION constant, with an
associated ptrace_rseq_configuration structure.
Add this constant to the various sys/ptrace.h headers in glibc, with
the structure in bits/ptrace-shared.h (named struct
__ptrace_rseq_configuration in glibc, as with other such structures).
Tested for x86_64, and with build-many-glibcs.py.
Diffstat (limited to 'sysdeps/unix/sysv/linux/s390')
-rw-r--r-- | sysdeps/unix/sysv/linux/s390/sys/ptrace.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/s390/sys/ptrace.h b/sysdeps/unix/sysv/linux/s390/sys/ptrace.h index 4f3c65726f..3ddd2e4267 100644 --- a/sysdeps/unix/sysv/linux/s390/sys/ptrace.h +++ b/sysdeps/unix/sysv/linux/s390/sys/ptrace.h @@ -86,6 +86,7 @@ __BEGIN_DECLS # undef PTRACE_SYSCALL_INFO_ENTRY # undef PTRACE_SYSCALL_INFO_EXIT # undef PTRACE_SYSCALL_INFO_SECCOMP +# undef PTRACE_GET_RSEQ_CONFIGURATION #endif /* Type of the REQUEST argument to `ptrace.' */ enum __ptrace_request @@ -217,6 +218,10 @@ enum __ptrace_request PTRACE_GET_SYSCALL_INFO = 0x420e, #define PTRACE_GET_SYSCALL_INFO PTRACE_GET_SYSCALL_INFO + /* Get rseq configuration information. */ + PTRACE_GET_RSEQ_CONFIGURATION = 0x420f, +#define PTRACE_GET_RSEQ_CONFIGURATION PTRACE_GET_RSEQ_CONFIGURATION + PTRACE_PEEKUSR_AREA = 0x5000, #define PTRACE_PEEKUSR_AREA PTRACE_PEEKUSR_AREA |