1STRSIGNAL(3) Linux Programmer's Manual STRSIGNAL(3)
2
3
4
6 strsignal - return string describing signal
7
9 #define _GNU_SOURCE
10 #include <string.h>
11
12 char *strsignal(int sig);
13
14 extern const char * const sys_siglist[];
15
17 The strsignal() function returns a string describing the signal number
18 passed in the argument sig. The string can only be used until the next
19 call to strsignal().
20
21 The array sys_siglist holds the signal description strings indexed by
22 signal number. The strsignal() function should be used if possible
23 instead of this array.
24
26 The strsignal() function returns the appropriate description string, or
27 an unknown signal message if the signal number is invalid. On some
28 systems (but not on Linux), a NULL pointer may be returned instead for
29 an invalid signal number.
30
32 POSIX.1-2008. Present on Solaris and the BSDs.
33
35 psignal(3), strerror(3), feature_test_macros(7)
36
38 This page is part of release 3.22 of the Linux man-pages project. A
39 description of the project, and information about reporting bugs, can
40 be found at http://www.kernel.org/doc/man-pages/.
41
42
43
44GNU 2008-08-21 STRSIGNAL(3)