1 /* Convert between signal names and numbers.
2 Copyright (C) 1990,92,93,95,96,99, 2002 Free Software Foundation, Inc.
3 This file was part of the GNU C Library, but is now part of GNU make.
5 GNU Make is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 GNU Make is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNU Make; see the file COPYING. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
22 /* If the system provides strsignal, we don't need it. */
24 #if !defined(HAVE_STRSIGNAL)
26 /* If the system provides sys_siglist, we'll use that.
27 Otherwise create our own.
30 #if !defined(SYS_SIGLIST_DECLARED)
32 /* Some systems do not define NSIG in <signal.h>. */
41 /* There is too much variation in Sys V signal numbers and names, so
42 we must initialize them at runtime. */
44 static const char *undoc
;
46 static const char *sys_siglist
[NSIG
];
48 /* Table of abbreviations for signals. Note: A given number can
49 appear more than once with different abbreviations. */
50 #define SIG_TABLE_SIZE (NSIG*2)
58 static num_abbrev sig_table
[SIG_TABLE_SIZE
];
60 /* Number of elements of sig_table used. */
61 static int sig_table_nelts
= 0;
63 /* Enter signal number NUMBER into the tables with ABBREV and NAME. */
66 init_sig (number
, abbrev
, name
)
71 /* If this value is ever greater than NSIG it seems like it'd be a bug in
72 the system headers, but... better safe than sorry. We know, for
73 example, that this isn't always true on VMS. */
75 if (number
>= 0 && number
< NSIG
)
76 sys_siglist
[number
] = name
;
78 if (sig_table_nelts
< SIG_TABLE_SIZE
)
80 sig_table
[sig_table_nelts
].number
= number
;
81 sig_table
[sig_table_nelts
++].abbrev
= abbrev
;
89 char *u
= _("unknown signal");
93 /* Initialize signal names. */
94 for (i
= 0; i
< NSIG
; i
++)
95 sys_siglist
[i
] = undoc
;
97 /* Initialize signal names. */
99 init_sig (SIGHUP
, "HUP", _("Hangup"));
102 init_sig (SIGINT
, "INT", _("Interrupt"));
104 #if defined (SIGQUIT)
105 init_sig (SIGQUIT
, "QUIT", _("Quit"));
108 init_sig (SIGILL
, "ILL", _("Illegal Instruction"));
110 #if defined (SIGTRAP)
111 init_sig (SIGTRAP
, "TRAP", _("Trace/breakpoint trap"));
113 /* If SIGIOT == SIGABRT, we want to print it as SIGABRT because
114 SIGABRT is in ANSI and POSIX.1 and SIGIOT isn't. */
115 #if defined (SIGABRT)
116 init_sig (SIGABRT
, "ABRT", _("Aborted"));
119 init_sig (SIGIOT
, "IOT", _("IOT trap"));
122 init_sig (SIGEMT
, "EMT", _("EMT trap"));
125 init_sig (SIGFPE
, "FPE", _("Floating point exception"));
127 #if defined (SIGKILL)
128 init_sig (SIGKILL
, "KILL", _("Killed"));
131 init_sig (SIGBUS
, "BUS", _("Bus error"));
133 #if defined (SIGSEGV)
134 init_sig (SIGSEGV
, "SEGV", _("Segmentation fault"));
137 init_sig (SIGSYS
, "SYS", _("Bad system call"));
139 #if defined (SIGPIPE)
140 init_sig (SIGPIPE
, "PIPE", _("Broken pipe"));
142 #if defined (SIGALRM)
143 init_sig (SIGALRM
, "ALRM", _("Alarm clock"));
145 #if defined (SIGTERM)
146 init_sig (SIGTERM
, "TERM", _("Terminated"));
148 #if defined (SIGUSR1)
149 init_sig (SIGUSR1
, "USR1", _("User defined signal 1"));
151 #if defined (SIGUSR2)
152 init_sig (SIGUSR2
, "USR2", _("User defined signal 2"));
154 /* If SIGCLD == SIGCHLD, we want to print it as SIGCHLD because that
155 is what is in POSIX.1. */
156 #if defined (SIGCHLD)
157 init_sig (SIGCHLD
, "CHLD", _("Child exited"));
160 init_sig (SIGCLD
, "CLD", _("Child exited"));
163 init_sig (SIGPWR
, "PWR", _("Power failure"));
165 #if defined (SIGTSTP)
166 init_sig (SIGTSTP
, "TSTP", _("Stopped"));
168 #if defined (SIGTTIN)
169 init_sig (SIGTTIN
, "TTIN", _("Stopped (tty input)"));
171 #if defined (SIGTTOU)
172 init_sig (SIGTTOU
, "TTOU", _("Stopped (tty output)"));
174 #if defined (SIGSTOP)
175 init_sig (SIGSTOP
, "STOP", _("Stopped (signal)"));
177 #if defined (SIGXCPU)
178 init_sig (SIGXCPU
, "XCPU", _("CPU time limit exceeded"));
180 #if defined (SIGXFSZ)
181 init_sig (SIGXFSZ
, "XFSZ", _("File size limit exceeded"));
183 #if defined (SIGVTALRM)
184 init_sig (SIGVTALRM
, "VTALRM", _("Virtual timer expired"));
186 #if defined (SIGPROF)
187 init_sig (SIGPROF
, "PROF", _("Profiling timer expired"));
189 #if defined (SIGWINCH)
190 /* "Window size changed" might be more accurate, but even if that
191 is all that it means now, perhaps in the future it will be
192 extended to cover other kinds of window changes. */
193 init_sig (SIGWINCH
, "WINCH", _("Window changed"));
195 #if defined (SIGCONT)
196 init_sig (SIGCONT
, "CONT", _("Continued"));
199 init_sig (SIGURG
, "URG", _("Urgent I/O condition"));
202 /* "I/O pending" has also been suggested. A disadvantage is
203 that signal only happens when the process has
204 asked for it, not everytime I/O is pending. Another disadvantage
205 is the confusion from giving it a different name than under Unix. */
206 init_sig (SIGIO
, "IO", _("I/O possible"));
208 #if defined (SIGWIND)
209 init_sig (SIGWIND
, "WIND", _("SIGWIND"));
211 #if defined (SIGPHONE)
212 init_sig (SIGPHONE
, "PHONE", _("SIGPHONE"));
214 #if defined (SIGPOLL)
215 init_sig (SIGPOLL
, "POLL", _("I/O possible"));
217 #if defined (SIGLOST)
218 init_sig (SIGLOST
, "LOST", _("Resource lost"));
220 #if defined (SIGDANGER)
221 init_sig (SIGDANGER
, "DANGER", _("Danger signal"));
223 #if defined (SIGINFO)
224 init_sig (SIGINFO
, "INFO", _("Information request"));
226 #if defined (SIGNOFP)
227 init_sig (SIGNOFP
, "NOFP", _("Floating point co-processor not available"));
233 #endif /* SYS_SIGLIST_DECLARED */
240 static char buf
[] = "Signal 12345678901234567890";
242 #if !defined(SYS_SIGLIST_DECLARED)
243 static char sig_initted
= 0;
246 sig_initted
= signame_init ();
249 if (signal
> 0 || signal
< NSIG
)
250 return (char *) sys_siglist
[signal
];
252 sprintf (buf
, "Signal %d", signal
);
256 #endif /* HAVE_STRSIGNAL */