24 lines
572 B
C
24 lines
572 B
C
/* Generated by ./xlat/gen.sh from ./xlat/sigaltstack_flags.in; do not edit. */
|
|
#if !(defined(SS_ONSTACK) || (defined(HAVE_DECL_SS_ONSTACK) && HAVE_DECL_SS_ONSTACK))
|
|
# define SS_ONSTACK 1
|
|
#endif
|
|
#if !(defined(SS_DISABLE) || (defined(HAVE_DECL_SS_DISABLE) && HAVE_DECL_SS_DISABLE))
|
|
# define SS_DISABLE 2
|
|
#endif
|
|
|
|
#ifdef IN_MPERS
|
|
|
|
extern const struct xlat sigaltstack_flags[];
|
|
|
|
#else
|
|
|
|
# if !(defined HAVE_M32_MPERS || defined HAVE_MX32_MPERS)
|
|
static
|
|
# endif
|
|
const struct xlat sigaltstack_flags[] = {
|
|
XLAT(SS_ONSTACK),
|
|
XLAT(SS_DISABLE),
|
|
XLAT_END
|
|
};
|
|
|
|
#endif /* !IN_MPERS */
|