Origin: https://git.kernel.org/pub/scm/libs/klibc/klibc.git/commit/?id=
811bff9cec254e3396493f4f2447862d252870ac
ia64 only provides the RT signal API, in which the type of sa_flags is
unsigned long and sa_mask is the last member of the struct.
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Gbp-Pq: Name 0001-klibc-ia64-Fix-definition-of-struct-sigaction.patch
__sighandler_t _sa_handler;
void (*_sa_sigaction) (int, struct siginfo *, void *);
} _u;
- sigset_t sa_mask;
- int sa_flags;
+ unsigned long sa_flags;
+ sigset_t sa_mask;
};
#define sa_handler _u._sa_handler