diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/s390/sys/procfs.h | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2013-08-20 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> + + * sysdeps/unix/sysv/linux/s390/sys/procfs.h (struct elf_prstatus): + Align 32 bit compat elf_greg to 8 bytes. + 2013-08-20 Andreas Arnez <arnez@linux.vnet.ibm.com> * elf/setup-vdso.h (setup_vdso): Fix missing string termination. diff --git a/sysdeps/unix/sysv/linux/s390/sys/procfs.h b/sysdeps/unix/sysv/linux/s390/sys/procfs.h index 36088f1627..c27c660a94 100644 --- a/sysdeps/unix/sysv/linux/s390/sys/procfs.h +++ b/sysdeps/unix/sysv/linux/s390/sys/procfs.h @@ -123,7 +123,8 @@ typedef struct elf_prpsinfo prpsinfo_t; core files. */ #define ELF_NGREG32 36 typedef unsigned int elf_greg_t32; -typedef elf_greg_t32 elf_gregset_t32[ELF_NGREG32]; +typedef elf_greg_t32 + elf_gregset_t32[ELF_NGREG32] __attribute__ ((__aligned__ (8))); typedef elf_fpregset_t elf_fpregset_t32; struct elf_prstatus32 |