master
1#ifdef _WASI_EMULATED_SIGNAL
2
3#define SIGHUP 1
4#define SIGINT 2
5#define SIGQUIT 3
6#define SIGILL 4
7#define SIGTRAP 5
8#define SIGABRT 6
9#define SIGIOT SIGABRT
10#define SIGBUS 7
11#define SIGFPE 8
12#define SIGKILL 9
13#define SIGUSR1 10
14#define SIGSEGV 11
15#define SIGUSR2 12
16#define SIGPIPE 13
17#define SIGALRM 14
18#define SIGTERM 15
19#define SIGSTKFLT 16
20#define SIGCHLD 17
21#define SIGCONT 18
22#define SIGSTOP 19
23#define SIGTSTP 20
24#define SIGTTIN 21
25#define SIGTTOU 22
26#define SIGURG 23
27#define SIGXCPU 24
28#define SIGXFSZ 25
29#define SIGVTALRM 26
30#define SIGPROF 27
31#define SIGWINCH 28
32#define SIGIO 29
33#define SIGPOLL 29
34#define SIGPWR 30
35#define SIGSYS 31
36#define SIGUNUSED SIGSYS
37
38#define _NSIG 65
39
40#endif