]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/strsignal.3
namespaces.7: ffix
[thirdparty/man-pages.git] / man3 / strsignal.3
CommitLineData
fea681da
MK
1.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2.\"
93015253 3.\" %%%LICENSE_START(VERBATIM)
fea681da
MK
4.\" Permission is granted to make and distribute verbatim copies of this
5.\" manual provided the copyright notice and this permission notice are
6.\" preserved on all copies.
7.\"
8.\" Permission is granted to copy and distribute modified versions of this
9.\" manual under the conditions for verbatim copying, provided that the
10.\" entire resulting derived work is distributed under the terms of a
11.\" permission notice identical to this one.
c13182ef 12.\"
fea681da
MK
13.\" Since the Linux kernel and libraries are constantly changing, this
14.\" manual page may be incorrect or out-of-date. The author(s) assume no
15.\" responsibility for errors or omissions, or for damages resulting from
16.\" the use of the information contained herein. The author(s) may not
17.\" have taken the same level of care in the production of this manual,
18.\" which is licensed free of charge, as they might when working
19.\" professionally.
c13182ef 20.\"
fea681da
MK
21.\" Formatted or processed versions of this manual, if unaccompanied by
22.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 23.\" %%%LICENSE_END
fea681da
MK
24.\"
25.\" References consulted:
26.\" Linux libc source code
27.\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
28.\" 386BSD man pages
29.\" Modified Sat Jul 24 17:59:03 1993 by Rik Faith (faith@cs.unc.edu)
97986708 30.TH STRSIGNAL 3 2016-03-15 "GNU" "Linux Programmer's Manual"
fea681da
MK
31.SH NAME
32strsignal \- return string describing signal
33.SH SYNOPSIS
34.nf
fea681da
MK
35.B #include <string.h>
36.sp
37.BI "char *strsignal(int " sig );
38.sp
39.BI "extern const char * const " sys_siglist [];
40.fi
235063a0
MK
41.sp
42.in -4n
43Feature Test Macro Requirements for glibc (see
44.BR feature_test_macros (7)):
45.in
46.sp
47.BR strsignal ():
ea91c3fd
MK
48.PD 0
49.ad l
50.RS 4
51.TP 4
52Since glibc 2.10:
b0da7b8b 53_POSIX_C_SOURCE\ >=\ 200809L
ea91c3fd 54.TP
235063a0
MK
55Before glibc 2.10:
56_GNU_SOURCE
ea91c3fd
MK
57.RE
58.ad
59.PD
fea681da 60.SH DESCRIPTION
60a90ecd
MK
61The
62.BR strsignal ()
63function returns a string describing the signal
46d8df8e
MK
64number passed in the argument
65.IR sig .
33a0ccb2 66The string can be used only until the next call to
60a90ecd 67.BR strsignal ().
fea681da 68.PP
46d8df8e
MK
69The array
70.I sys_siglist
71holds the signal description strings
c13182ef 72indexed by signal number.
60a90ecd
MK
73The
74.BR strsignal ()
75function should be
fea681da 76used if possible instead of this array.
47297adb 77.SH RETURN VALUE
60a90ecd
MK
78The
79.BR strsignal ()
80function returns the appropriate description
fea681da 81string, or an unknown signal message if the signal number is invalid.
b437fdd9
MK
82On some systems (but not on Linux), NULL may instead be
83returned for an invalid signal number.
5e6495f4
ZL
84.SH ATTRIBUTES
85For an explanation of the terms used in this section, see
86.BR attributes (7).
87.TS
88allbox;
89lb lb lbw31
90l l l.
91Interface Attribute Value
92T{
93.BR strsignal ()
94T} Thread safety MT-Unsafe race:strsignal locale
95.TE
96
47297adb 97.SH CONFORMING TO
2773008f
MK
98POSIX.1-2008.
99Present on Solaris and the BSDs.
47297adb 100.SH SEE ALSO
fea681da 101.BR psignal (3),
0a4f8b7b 102.BR strerror (3)