[PATCH/committed] ia64: sigaction.h: fix sa_flags ordering
Commit Message
Since ia64 is little endian, sa_flags has to come before the padding
when splitting it from 64bits to 32bits.
Reported-by: Joseph Myers <joseph@codesourcery.com>
---
ChangeLog | 5 +++++
sysdeps/unix/sysv/linux/ia64/bits/sigaction.h | 2 +-
2 files changed, 6 insertions(+), 1 deletion(-)
@@ -1,3 +1,8 @@
+2015-07-23 Mike Frysinger <vapier@gentoo.org>
+
+ * sysdeps/unix/sysv/linux/ia64/bits/sigaction.h (struct sigaction):
+ Swap __glibc_reserved0 and sa_flags order.
+
2015-07-23 Siddhesh Poyarekar <siddhesh@redhat.com>
[BZ #18657]
@@ -40,8 +40,8 @@ struct sigaction
#endif
/* Special flags. */
- int __glibc_reserved0;
int sa_flags;
+ int __glibc_reserved0;
/* Additional set of signals to be blocked. */
__sigset_t sa_mask;