Usermode/libc - Fix strchr and strrchr behavior
[tpg/acess2.git] / Usermode / Libraries / libc.so_src / include_exp / signal_list.h
1 #ifndef _ACESSLIBC__SIGNAL_LIST_H_
2 #define _ACESSLIBC__SIGNAL_LIST_H_
3
4 enum {
5         SIGNONE,
6         SIGHUP,         // POSIX
7         SIGINT,         // C99
8         SIGQUIT,        // POSIX
9         SIGILL,         // C99
10         _SIGNAL_5,
11         SIGABRT,        // C99
12         _SIGNAL_7,
13         SIGFPE,         // C99
14         SIGKILL,        // POSIX
15         _SIGNAL_10,
16         SIGSEGV,        // C99
17         SIGALRM,        // POSIX
18         SIGTERM,        // C99
19         SIGUSR1,        // POSIX
20         SIGUSR2,        // POSIX
21
22         // = 16
23         SIGSTOP,        // POSIX - Stop process
24         SIGTSTP,        // POSIX - ? ^Z
25         SIGTTIN,        // POSIX - Background process read TTY
26         SIGTTOU,        // POSIX - Background process write TTY
27         SIGPIPE,        // POSIX
28         SIGCHLD,        // POSIX
29         SIGWINCH,       // POSIX
30
31         NSIGNALS
32 };
33
34 #endif
35

UCC git Repository :: git.ucc.asn.au