aboutsummaryrefslogtreecommitdiffstats
path: root/src/signames.h
blob: 3850df645c506f44334ed9dbf4a26d51a47e1623 (plain) (blame)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#ifndef SIGNAMES_H
#define SIGNAMES_H

#include <signal.h>

struct signame {
    int sig;
    const char* name;
};

static const struct signame sigs[] =
{
#ifdef SIGABRT
    {SIGABRT,   "ABRT"},
#endif
#ifdef SIGALRM
    {SIGALRM,   "ALRM"},
#endif
#ifdef SIGBUS
    {SIGBUS,    "BUS"},
#endif
#ifdef SIGCHLD
    {SIGCHLD,   "CHLD"},
#endif
#ifdef SIGCLD
    {SIGCLD,    "CLD"},
#endif
#ifdef SIGCONT
    {SIGCONT,   "CONT"},
#endif
#ifdef SIGEMT
    {SIGEMT,    "EMT"},
#endif
#ifdef SIGFPE
    {SIGFPE,    "FPE"},
#endif
#ifdef SIGHUP
    {SIGHUP,    "HUP"},
#endif
#ifdef SIGILL
    {SIGILL,    "ILL"},
#endif
#ifdef SIGINFO
    {SIGINFO,   "INFO"},
#endif
#ifdef SIGINT
    {SIGINT,    "INT"},
#endif
#ifdef SIGIO
    {SIGIO,     "IO"},
#endif
#ifdef SIGIOT
    {SIGIOT,    "IOT"},
#endif
#ifdef SIGKILL
    {SIGKILL,   "KILL"},
#endif
#ifdef SIGLOST
    {SIGLOST,   "LOST"},
#endif
#ifdef SIGPIPE
    {SIGPIPE,   "PIPE"},
#endif
#ifdef SIGPOLL
    {SIGPOLL,   "POLL"},
#endif
#ifdef SIGPROF
    {SIGPROF,   "PROF"},
#endif
#ifdef SIGPWR
    {SIGPWR,    "PWR"},
#endif
#ifdef SIGQUIT
    {SIGQUIT,   "QUIT"},
#endif
#ifdef SIGSEGV
    {SIGSEGV,   "SEGV"},
#endif
#ifdef SIGSTKFLT
    {SIGSTKFLT, "STKFLT"},
#endif
#ifdef SIGSTOP
    {SIGSTOP,   "STOP"},
#endif
#ifdef SIGSYS
    {SIGSYS,    "SYS"},
#endif
#ifdef SIGTERM
    {SIGTERM,   "TERM"},
#endif
#ifdef SIGTRAP
    {SIGTRAP,   "TRAP"},
#endif
#ifdef SIGTSTP
    {SIGTSTP,   "TSTP"},
#endif
#ifdef SIGTTIN
    {SIGTTIN,   "TTIN"},
#endif
#ifdef SIGTTOU
    {SIGTTOU,   "TTOU"},
#endif
#ifdef SIGUNUSED
    {SIGUNUSED, "UNUSED"},
#endif
#ifdef SIGURG
    {SIGURG,    "URG"},
#endif
#ifdef SIGUSR1
    {SIGUSR1,   "USR1"},
#endif
#ifdef SIGUSR2
    {SIGUSR2,   "USR2"},
#endif
#ifdef SIGVTALRM
    {SIGVTALRM, "VTALRM"},
#endif
#ifdef SIGWINCH
    {SIGWINCH,  "WINCH"},
#endif
#ifdef SIGXCPU
    {SIGXCPU,   "XCPU"},
#endif
#ifdef SIGXFSZ
    {SIGXFSZ,   "XFSZ"},
#endif
};

int name_to_sig(const char* name);
const char* sig_to_name(int sig);

#endif