File: sigabbrev.c

package info (click to toggle)
klibc 2.0.4-9
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,512 kB
  • sloc: ansic: 48,305; asm: 2,578; perl: 797; makefile: 200; sh: 191
file content (121 lines) | stat: -rw-r--r-- 1,870 bytes parent folder | download | duplicates (12)
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
/*
 * sigabbrev.h
 *
 * Construct the abbreviated signal list
 */

#include <signal.h>
#include <unistd.h>

const char *const sys_sigabbrev[NSIG] = {
#ifdef SIGABRT
	[SIGABRT] = "ABRT",
#endif
#ifdef SIGALRM
	[SIGALRM] = "ALRM",
#endif
#ifdef SIGBUS
	[SIGBUS] = "BUS",
#endif
#ifdef SIGCHLD
	[SIGCHLD] = "CHLD",
#endif
#if defined(SIGCLD) && (SIGCHLD != SIGCLD)
	[SIGCLD] = "CLD",
#endif
#ifdef SIGEMT
	[SIGEMT] = "EMT",
#endif
#ifdef SIGFPE
	[SIGFPE] = "FPE",
#endif
#ifdef SIGHUP
	[SIGHUP] = "HUP",
#endif
#ifdef SIGILL
	[SIGILL] = "ILL",
#endif
	/* SIGINFO == SIGPWR */
#ifdef SIGINT
	[SIGINT] = "INT",
#endif
#ifdef SIGIO
	[SIGIO] = "IO",
#endif
#if defined(SIGIOT) && (SIGIOT != SIGABRT)
	[SIGIOT] = "IOT",
#endif
#ifdef SIGKILL
	[SIGKILL] = "KILL",
#endif
#if defined(SIGLOST) && (SIGLOST != SIGIO) && (SIGLOST != SIGPWR)
	[SIGLOST] = "LOST",
#endif
#ifdef SIGPIPE
	[SIGPIPE] = "PIPE",
#endif
#if defined(SIGPOLL) && (SIGPOLL != SIGIO)
	[SIGPOLL] = "POLL",
#endif
#ifdef SIGPROF
	[SIGPROF] = "PROF",
#endif
#ifdef SIGPWR
	[SIGPWR] = "PWR",
#endif
#ifdef SIGQUIT
	[SIGQUIT] = "QUIT",
#endif
	/* SIGRESERVE == SIGUNUSED */
#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 SIGTSTP
	[SIGTSTP] = "TSTP",
#endif
#ifdef SIGTTIN
	[SIGTTIN] = "TTIN",
#endif
#ifdef SIGTTOU
	[SIGTTOU] = "TTOU",
#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
#ifdef SIGTRAP
	[SIGTRAP] = "TRAP",
#endif
#ifdef SIGCONT
	[SIGCONT] = "CONT",
#endif
};