mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
ia64: sifaction.h: change sa_flags to an int
This fixes the conform test for the sigaction.h header and makes it match all the other arches.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2015-07-22 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/ia64/bits/sigaction.h (struct sigaction):
|
||||||
|
Change sa_flags from a long to an int and add __glibc_reserved0 before
|
||||||
|
it for padding.
|
||||||
|
|
||||||
2015-07-22 Mike Frysinger <vapier@gentoo.org>
|
2015-07-22 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/ia64/bits/siginfo.h (siginfo_t): Make struct
|
* sysdeps/unix/sysv/linux/ia64/bits/siginfo.h (siginfo_t): Make struct
|
||||||
|
@ -40,7 +40,8 @@ struct sigaction
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Special flags. */
|
/* Special flags. */
|
||||||
unsigned long int sa_flags;
|
int __glibc_reserved0;
|
||||||
|
int sa_flags;
|
||||||
|
|
||||||
/* Additional set of signals to be blocked. */
|
/* Additional set of signals to be blocked. */
|
||||||
__sigset_t sa_mask;
|
__sigset_t sa_mask;
|
||||||
|
Reference in New Issue
Block a user