1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| /* Generated by ./xlat/gen.sh from ./xlat/sigprocmaskcmds.in; do not edit. */
|
| #include "gcc_compat.h"
| #include "static_assert.h"
|
|
| #ifndef XLAT_MACROS_ONLY
|
| # ifdef IN_MPERS
|
| # error static const struct xlat sigprocmaskcmds in mpers mode
|
| # else
|
| static
| const struct xlat sigprocmaskcmds[] = {
| #if defined(SIG_BLOCK) || (defined(HAVE_DECL_SIG_BLOCK) && HAVE_DECL_SIG_BLOCK)
| XLAT(SIG_BLOCK),
| #endif
| #if defined(SIG_UNBLOCK) || (defined(HAVE_DECL_SIG_UNBLOCK) && HAVE_DECL_SIG_UNBLOCK)
| XLAT(SIG_UNBLOCK),
| #endif
| #if defined(SIG_SETMASK) || (defined(HAVE_DECL_SIG_SETMASK) && HAVE_DECL_SIG_SETMASK)
| XLAT(SIG_SETMASK),
| #endif
| #if defined(SIG_SETMASK32) || (defined(HAVE_DECL_SIG_SETMASK32) && HAVE_DECL_SIG_SETMASK32)
| XLAT(SIG_SETMASK32),
| #endif
| XLAT_END
| };
|
| # endif /* !IN_MPERS */
|
| #endif /* !XLAT_MACROS_ONLY */
|
|