diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2017-07-23 23:22:53 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2017-07-23 23:22:53 +0000 |
commit | cab91f947a6059907a314a91f4c90abcccfb0262 (patch) | |
tree | c28e08faf83fd061882f9c56e86b7b8ccff0ee0e /ChangeLog | |
parent | 64a1daed189ab6fff11b33dd8d493962460f0f6c (diff) | |
download | glibc-cab91f947a6059907a314a91f4c90abcccfb0262.tar glibc-cab91f947a6059907a314a91f4c90abcccfb0262.tar.gz glibc-cab91f947a6059907a314a91f4c90abcccfb0262.tar.bz2 glibc-cab91f947a6059907a314a91f4c90abcccfb0262.zip |
S390: fix sys/ptrace.h to make it includible again after asm/ptrace.h
sys/ptrace.h on S390 used to be includible both before and after
asm/ptrace.h, until commit b08a6a0dea63742313ed3d9577c1e2d83436b196
among other changes introduced PTRACE_SINGLEBLOCK enum constant which
is also defined in asm/ptrace.h as a macro, making sys/ptrace.h fail
to compile when included after asm/ptrace.h.
* sysdeps/unix/sysv/linux/s390/sys/ptrace.h [_LINUX_PTRACE_H ||
_S390_PTRACE_H]: Undefine all PTRACE_* macro constants defined
later as enum constants, except PTRACE_PEEKUSER, PTRACE_POKEUSER,
and PTRACE_SEIZE_DEVEL that are not defined by Linux headers.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,10 @@ +2017-07-23 Dmitry V. Levin <ldv@altlinux.org> + + * sysdeps/unix/sysv/linux/s390/sys/ptrace.h [_LINUX_PTRACE_H || + _S390_PTRACE_H]: Undefine all PTRACE_* macro constants defined + later as enum constants, except PTRACE_PEEKUSER, PTRACE_POKEUSER, + and PTRACE_SEIZE_DEVEL that are not defined by Linux headers. + 2017-07-23 John David Anglin <danglin@gcc.gnu.org> [BZ 19170] |