signal.h - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
signal.h (589B)
---
1 typedef int sig_atomic_t;
2
3 #define SIG_ERR ((void (*)(int)) -1)
4 #define SIG_DFL ((void (*)(int)) 0)
5 #define SIG_IGN ((void (*)(int)) 1)
6
7 #define SIGHUP 1
8 #define SIGINT 2
9 #define SIGQUIT 3
10 #define SIGILL 4
11 #define SIGABRT 6
12 #define SIGFPE 8
13 #define SIGKILL 9
14 #define SIGSEGV 11
15 #define SIGPIPE 13
16 #define SIGALRM 14
17 #define SIGTERM 15
18 #define SIGSTOP 17
19 #define SIGTSTP 18
20 #define SIGCONT 19
21 #define SIGCHLD 20
22 #define SIGTTIN 21
23 #define SIGTTOU 22
24 #define SIGUSR1 30
25 #define SIGUSR2 31
26
27 #define __NR_SIGNALS 32