1 /* signames.c -- Create an array of signal names. */
3 /* Copyright (C) 2006 Free Software Foundation, Inc.
5 This file is part of GNU Bash, the Bourne Again SHell.
7 Bash is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 Bash is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License along
18 with Bash; see the file COPYING. If not, write to the Free Software
19 Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
25 #include <sys/types.h>
28 #if defined (HAVE_STDLIB_H)
31 # include "ansi_stdlib.h"
32 #endif /* HAVE_STDLIB_H */
45 #define LASTSIG NSIG+2
47 char *signal_names
[2 * (LASTSIG
)];
49 #define signal_names_size (sizeof(signal_names)/sizeof(signal_names[0]))
51 /* AIX 4.3 defines SIGRTMIN and SIGRTMAX as 888 and 999 respectively.
52 I don't want to allocate so much unused space for the intervening signal
53 numbers, so we just punt if SIGRTMAX is past the bounds of the
54 signal_names array (handled in configure). */
55 #if defined (SIGRTMAX) && defined (UNUSABLE_RT_SIGNALS)
60 #if defined (SIGRTMAX) || defined (SIGRTMIN)
65 #if defined (BUILDTOOL)
66 extern char *progname
;
70 initialize_signames ()
73 #if defined (SIGRTMAX) || defined (SIGRTMIN)
74 int rtmin
, rtmax
, rtcnt
;
77 for (i
= 1; i
< signal_names_size
; i
++)
78 signal_names
[i
] = (char *)NULL
;
80 /* `signal' 0 is what we do on exit. */
81 signal_names
[0] = "EXIT";
83 /* Place signal names which can be aliases for more common signal
84 names first. This allows (for example) SIGABRT to overwrite SIGLOST. */
86 /* POSIX 1003.1b-1993 real time signals, but take care of incomplete
87 implementations. Acoording to the standard, both, SIGRTMIN and
88 SIGRTMAX must be defined, SIGRTMIN must be stricly less than
89 SIGRTMAX, and the difference must be at least 7, that is, there
90 must be at least eight distinct real time signals. */
92 /* The generated signal names are SIGRTMIN, SIGRTMIN+1, ...,
93 SIGRTMIN+x, SIGRTMAX-x, ..., SIGRTMAX-1, SIGRTMAX. If the number
94 of RT signals is odd, there is an extra SIGRTMIN+(x+1).
95 These names are the ones used by ksh and /usr/xpg4/bin/sh on SunOS5. */
97 #if defined (SIGRTMIN)
99 signal_names
[rtmin
] = "SIGRTMIN";
102 #if defined (SIGRTMAX)
104 signal_names
[rtmax
] = "SIGRTMAX";
107 #if defined (SIGRTMAX) && defined (SIGRTMIN)
110 rtcnt
= (rtmax
- rtmin
- 1) / 2;
111 /* croak if there are too many RT signals */
112 if (rtcnt
>= RTLIM
/2)
116 fprintf(stderr
, "%s: error: more than %d real time signals, fix `%s'\n",
117 progname
, RTLIM
, progname
);
121 for (i
= 1; i
<= rtcnt
; i
++)
123 signal_names
[rtmin
+i
] = (char *)malloc(RTLEN
);
124 if (signal_names
[rtmin
+i
])
125 sprintf (signal_names
[rtmin
+i
], "SIGRTMIN+%d", i
);
126 signal_names
[rtmax
-i
] = (char *)malloc(RTLEN
);
127 if (signal_names
[rtmax
-i
])
128 sprintf (signal_names
[rtmax
-i
], "SIGRTMAX-%d", i
);
131 if (rtcnt
< RTLIM
/2-1 && rtcnt
!= (rtmax
-rtmin
)/2)
133 /* Need an extra RTMIN signal */
134 signal_names
[rtmin
+rtcnt
+1] = (char *)malloc(RTLEN
);
135 if (signal_names
[rtmin
+rtcnt
+1])
136 sprintf (signal_names
[rtmin
+rtcnt
+1], "SIGRTMIN+%d", rtcnt
+1);
139 #endif /* SIGRTMIN && SIGRTMAX */
141 #if defined (SIGLOST) /* resource lost (eg, record-lock lost) */
142 signal_names
[SIGLOST
] = "SIGLOST";
146 #if defined (SIGMSG) /* HFT input data pending */
147 signal_names
[SIGMSG
] = "SIGMSG";
150 #if defined (SIGDANGER) /* system crash imminent */
151 signal_names
[SIGDANGER
] = "SIGDANGER";
154 #if defined (SIGMIGRATE) /* migrate process to another CPU */
155 signal_names
[SIGMIGRATE
] = "SIGMIGRATE";
158 #if defined (SIGPRE) /* programming error */
159 signal_names
[SIGPRE
] = "SIGPRE";
162 #if defined (SIGVIRT) /* AIX virtual time alarm */
163 signal_names
[SIGVIRT
] = "SIGVIRT";
166 #if defined (SIGALRM1) /* m:n condition variables */
167 signal_names
[SIGALRM1
] = "SIGALRM1";
170 #if defined (SIGWAITING) /* m:n scheduling */
171 signal_names
[SIGWAITING
] = "SIGWAITING";
174 #if defined (SIGGRANT) /* HFT monitor mode granted */
175 signal_names
[SIGGRANT
] = "SIGGRANT";
178 #if defined (SIGKAP) /* keep alive poll from native keyboard */
179 signal_names
[SIGKAP
] = "SIGKAP";
182 #if defined (SIGRETRACT) /* HFT monitor mode retracted */
183 signal_names
[SIGRETRACT
] = "SIGRETRACT";
186 #if defined (SIGSOUND) /* HFT sound sequence has completed */
187 signal_names
[SIGSOUND
] = "SIGSOUND";
190 #if defined (SIGSAK) /* Secure Attention Key */
191 signal_names
[SIGSAK
] = "SIGSAK";
195 #if defined (SIGLWP) /* special signal used by thread library */
196 signal_names
[SIGLWP
] = "SIGLWP";
199 #if defined (SIGFREEZE) /* special signal used by CPR */
200 signal_names
[SIGFREEZE
] = "SIGFREEZE";
203 #if defined (SIGTHAW) /* special signal used by CPR */
204 signal_names
[SIGTHAW
] = "SIGTHAW";
207 #if defined (SIGCANCEL) /* thread cancellation signal used by libthread */
208 signal_names
[SIGCANCEL
] = "SIGCANCEL";
211 #if defined (SIGXRES) /* resource control exceeded */
212 signal_names
[SIGXRES
] = "SIGXRES";
216 #if defined (SIGDIL) /* DIL signal (?) */
217 signal_names
[SIGDIL
] = "SIGDIL";
221 #if defined (SIGCLD) /* Like SIGCHLD. */
222 signal_names
[SIGCLD
] = "SIGCLD";
225 #if defined (SIGPWR) /* power state indication */
226 signal_names
[SIGPWR
] = "SIGPWR";
229 #if defined (SIGPOLL) /* Pollable event (for streams) */
230 signal_names
[SIGPOLL
] = "SIGPOLL";
234 #if defined (SIGWINDOW)
235 signal_names
[SIGWINDOW
] = "SIGWINDOW";
239 #if defined (SIGSTKFLT)
240 signal_names
[SIGSTKFLT
] = "SIGSTKFLT";
244 #if defined (SIGTHR) /* thread interrupt */
245 signal_names
[SIGTHR
] = "SIGTHR";
249 #if defined (SIGHUP) /* hangup */
250 signal_names
[SIGHUP
] = "SIGHUP";
253 #if defined (SIGINT) /* interrupt */
254 signal_names
[SIGINT
] = "SIGINT";
257 #if defined (SIGQUIT) /* quit */
258 signal_names
[SIGQUIT
] = "SIGQUIT";
261 #if defined (SIGILL) /* illegal instruction (not reset when caught) */
262 signal_names
[SIGILL
] = "SIGILL";
265 #if defined (SIGTRAP) /* trace trap (not reset when caught) */
266 signal_names
[SIGTRAP
] = "SIGTRAP";
269 #if defined (SIGIOT) /* IOT instruction */
270 signal_names
[SIGIOT
] = "SIGIOT";
273 #if defined (SIGABRT) /* Cause current process to dump core. */
274 signal_names
[SIGABRT
] = "SIGABRT";
277 #if defined (SIGEMT) /* EMT instruction */
278 signal_names
[SIGEMT
] = "SIGEMT";
281 #if defined (SIGFPE) /* floating point exception */
282 signal_names
[SIGFPE
] = "SIGFPE";
285 #if defined (SIGKILL) /* kill (cannot be caught or ignored) */
286 signal_names
[SIGKILL
] = "SIGKILL";
289 #if defined (SIGBUS) /* bus error */
290 signal_names
[SIGBUS
] = "SIGBUS";
293 #if defined (SIGSEGV) /* segmentation violation */
294 signal_names
[SIGSEGV
] = "SIGSEGV";
297 #if defined (SIGSYS) /* bad argument to system call */
298 signal_names
[SIGSYS
] = "SIGSYS";
301 #if defined (SIGPIPE) /* write on a pipe with no one to read it */
302 signal_names
[SIGPIPE
] = "SIGPIPE";
305 #if defined (SIGALRM) /* alarm clock */
306 signal_names
[SIGALRM
] = "SIGALRM";
309 #if defined (SIGTERM) /* software termination signal from kill */
310 signal_names
[SIGTERM
] = "SIGTERM";
313 #if defined (SIGURG) /* urgent condition on IO channel */
314 signal_names
[SIGURG
] = "SIGURG";
317 #if defined (SIGSTOP) /* sendable stop signal not from tty */
318 signal_names
[SIGSTOP
] = "SIGSTOP";
321 #if defined (SIGTSTP) /* stop signal from tty */
322 signal_names
[SIGTSTP
] = "SIGTSTP";
325 #if defined (SIGCONT) /* continue a stopped process */
326 signal_names
[SIGCONT
] = "SIGCONT";
329 #if defined (SIGCHLD) /* to parent on child stop or exit */
330 signal_names
[SIGCHLD
] = "SIGCHLD";
333 #if defined (SIGTTIN) /* to readers pgrp upon background tty read */
334 signal_names
[SIGTTIN
] = "SIGTTIN";
337 #if defined (SIGTTOU) /* like TTIN for output if (tp->t_local<OSTOP) */
338 signal_names
[SIGTTOU
] = "SIGTTOU";
341 #if defined (SIGIO) /* input/output possible signal */
342 signal_names
[SIGIO
] = "SIGIO";
345 #if defined (SIGXCPU) /* exceeded CPU time limit */
346 signal_names
[SIGXCPU
] = "SIGXCPU";
349 #if defined (SIGXFSZ) /* exceeded file size limit */
350 signal_names
[SIGXFSZ
] = "SIGXFSZ";
353 #if defined (SIGVTALRM) /* virtual time alarm */
354 signal_names
[SIGVTALRM
] = "SIGVTALRM";
357 #if defined (SIGPROF) /* profiling time alarm */
358 signal_names
[SIGPROF
] = "SIGPROF";
361 #if defined (SIGWINCH) /* window changed */
362 signal_names
[SIGWINCH
] = "SIGWINCH";
366 #if defined (SIGINFO) && !defined (_SEQUENT_) /* information request */
367 signal_names
[SIGINFO
] = "SIGINFO";
370 #if defined (SIGUSR1) /* user defined signal 1 */
371 signal_names
[SIGUSR1
] = "SIGUSR1";
374 #if defined (SIGUSR2) /* user defined signal 2 */
375 signal_names
[SIGUSR2
] = "SIGUSR2";
378 #if defined (SIGKILLTHR) /* BeOS: Kill Thread */
379 signal_names
[SIGKILLTHR
] = "SIGKILLTHR";
382 for (i
= 0; i
< NSIG
; i
++)
383 if (signal_names
[i
] == (char *)NULL
)
385 signal_names
[i
] = (char *)malloc (18);
387 sprintf (signal_names
[i
], "SIGJUNK(%d)", i
);
390 signal_names
[NSIG
] = "DEBUG";
391 signal_names
[NSIG
+1] = "ERR";
392 signal_names
[NSIG
+2] = "RETURN";