mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
ia64: sigaction.h: fix sa_flags ordering
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>
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user