]>
Commit | Line | Data |
---|---|---|
dd3b648e | 1 | /* Convert between signal names and numbers. |
75af490b | 2 | Copyright 1990, 1992 Free Software Foundation, Inc. |
dd3b648e RP |
3 | |
4 | This program is free software; you can redistribute it and/or modify | |
5 | it under the terms of the GNU General Public License as published by | |
99a7de40 JG |
6 | the Free Software Foundation; either version 2 of the License, or |
7 | (at your option) any later version. | |
dd3b648e RP |
8 | |
9 | This program is distributed in the hope that it will be useful, | |
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | GNU General Public License for more details. | |
13 | ||
14 | You should have received a copy of the GNU General Public License | |
99a7de40 JG |
15 | along with this program; if not, write to the Free Software |
16 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
dd3b648e | 17 | |
75af490b JG |
18 | #if !defined (SIGNAME_H) |
19 | #define SIGNAME_H 1 | |
20 | ||
dd3b648e RP |
21 | /* Names for signals from 0 to NSIG-1. */ |
22 | extern char *sys_siglist[]; | |
23 | ||
dd3b648e RP |
24 | /* Return the abbreviation (e.g. ABRT, FPE, etc.) for signal NUMBER. |
25 | Do not return this as a const char *. The caller might want to | |
26 | assign it to a char *. */ | |
75af490b JG |
27 | |
28 | extern char * | |
29 | sig_abbrev PARAMS ((int)); | |
dd3b648e RP |
30 | |
31 | /* Return the signal number for an ABBREV, or -1 if there is no | |
32 | signal by that name. */ | |
75af490b JG |
33 | |
34 | extern int | |
35 | sig_number PARAMS ((const char *)); | |
dd3b648e | 36 | |
407a8389 | 37 | #ifndef PSIGNAL_IN_SIGNAL_H |
dd3b648e RP |
38 | /* Print to standard error the name of SIGNAL, preceded by MESSAGE and |
39 | a colon, and followed by a newline. */ | |
dd3b648e | 40 | |
75af490b JG |
41 | extern void |
42 | psignal PARAMS ((unsigned, const char *)); | |
407a8389 | 43 | #endif |
dd3b648e | 44 | |
75af490b | 45 | #endif /* !defined (SIGNAME_H) */ |