1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-11-26 00:03:11 +03:00

* sysdeps/unix/sysv/linux/s390/sys/procfs.h (struct elf_prstatus):

Align 32 bit compat elf_greg to 8 bytes.
This commit is contained in:
Andreas Krebbel
2013-08-20 14:13:59 +02:00
parent f315524e03
commit 4e39af6eca
2 changed files with 7 additions and 1 deletions

View File

@@ -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> 2013-08-20 Andreas Arnez <arnez@linux.vnet.ibm.com>
* elf/setup-vdso.h (setup_vdso): Fix missing string termination. * elf/setup-vdso.h (setup_vdso): Fix missing string termination.

View File

@@ -123,7 +123,8 @@ typedef struct elf_prpsinfo prpsinfo_t;
core files. */ core files. */
#define ELF_NGREG32 36 #define ELF_NGREG32 36
typedef unsigned int elf_greg_t32; 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; typedef elf_fpregset_t elf_fpregset_t32;
struct elf_prstatus32 struct elf_prstatus32