You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
730 B
28 lines
730 B
/* 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 |
|
#if !(defined(SS_AUTODISARM) || (defined(HAVE_DECL_SS_AUTODISARM) && HAVE_DECL_SS_AUTODISARM)) |
|
# define SS_AUTODISARM (1U << 31) |
|
#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(SS_AUTODISARM), |
|
XLAT_END |
|
}; |
|
|
|
#endif /* !IN_MPERS */
|
|
|