signal.h - scc - simple c99 compiler
HTML 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 SIGUSR1 10
15 #define SIGSEGV 11
16 #define SIGUSR2 12
17 #define SIGPIPE 13
18 #define SIGALRM 14
19 #define SIGTERM 15
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
27 #define __NR_SIGNALS 23