aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorSzabolcs Nagy <nsz@port70.net>2015-07-09 09:53:30 +0100
committerSzabolcs Nagy <nsz@port70.net>2015-07-09 09:53:30 +0100
commitb8528e771c0f31ebb8ac2470e2cf7ee9a50693e2 (patch)
treee7bea5d959e6742c1868311993dc313b5a191dc2 /ChangeLog
parent14d623bcd178d336b47fdb4f0c973720d56d907c (diff)
downloadglibc-b8528e771c0f31ebb8ac2470e2cf7ee9a50693e2.tar
glibc-b8528e771c0f31ebb8ac2470e2cf7ee9a50693e2.tar.gz
glibc-b8528e771c0f31ebb8ac2470e2cf7ee9a50693e2.tar.bz2
glibc-b8528e771c0f31ebb8ac2470e2cf7ee9a50693e2.zip
[AArch64][BZ 18648] change greg_t definition in ucontext.h
This is an ABI breaking change, but typedef int greg_t; is not a useful definition on aarch64. greg_t is usually used for defining gregset_t which is used in mcontext_t. The general registers in mcontext_t can only be accessed by target specific code and on aarch64 greg_t is not needed for that so this change is not supposed to break existing code, just fix the definition. [BZ #18648] * sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h (greg_t): Change the definition to elf_greg_t. (Added another BZ entry that was missed in the previous commit).
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 413a1c80a7..95f3ddf3c3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,11 @@
2015-07-09 Szabolcs Nagy <szabolcs.nagy@arm.com>
+ [BZ #18400]
+ [BZ #18648]
* sysdeps/unix/sysv/linux/aarch64/sys/procfs.h (struct elf_prpsinfo):
Fix pr_uid and pr_gid members.
+ * sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h (greg_t): Change the
+ definition to elf_greg_t.
2015-07-08 Roland McGrath <roland@hack.frob.com>