• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Generated by ./xlat/gen.sh from ./xlat/sigaltstack_flags.in; do not edit. */
2 #if !(defined(SS_ONSTACK) || (defined(HAVE_DECL_SS_ONSTACK) && HAVE_DECL_SS_ONSTACK))
3 # define SS_ONSTACK 1
4 #endif
5 #if !(defined(SS_DISABLE) || (defined(HAVE_DECL_SS_DISABLE) && HAVE_DECL_SS_DISABLE))
6 # define SS_DISABLE 2
7 #endif
8 #if !(defined(SS_AUTODISARM) || (defined(HAVE_DECL_SS_AUTODISARM) && HAVE_DECL_SS_AUTODISARM))
9 # define SS_AUTODISARM (1U << 31)
10 #endif
11 
12 #ifdef IN_MPERS
13 
14 extern const struct xlat sigaltstack_flags[];
15 
16 #else
17 
18 # if !(defined HAVE_M32_MPERS || defined HAVE_MX32_MPERS)
19 static
20 # endif
21 const struct xlat sigaltstack_flags[] = {
22  XLAT(SS_ONSTACK),
23  XLAT(SS_DISABLE),
24  XLAT(SS_AUTODISARM),
25  XLAT_END
26 };
27 
28 #endif /* !IN_MPERS */
29