OSDN Git Service

LDP: Update original to LDP v3.68
[linuxjm/LDP_man-pages.git] / original / man3 / strsignal.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
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.
12 .\"
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.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
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)
30 .TH STRSIGNAL 3  2010-09-15 "GNU" "Linux Programmer's Manual"
31 .SH NAME
32 strsignal \- return string describing signal
33 .SH SYNOPSIS
34 .nf
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
41 .sp
42 .in -4n
43 Feature Test Macro Requirements for glibc (see
44 .BR feature_test_macros (7)):
45 .in
46 .sp
47 .BR strsignal ():
48 .PD 0
49 .ad l
50 .RS 4
51 .TP 4
52 Since glibc 2.10:
53 _XOPEN_SOURCE\ >=\ 700 || _POSIX_C_SOURCE\ >=\ 200809L
54 .TP
55 Before glibc 2.10:
56 _GNU_SOURCE
57 .RE
58 .ad
59 .PD
60 .SH DESCRIPTION
61 The
62 .BR strsignal ()
63 function returns a string describing the signal
64 number passed in the argument
65 .IR sig .
66 The string can be used only until the next call to
67 .BR strsignal ().
68 .PP
69 The array
70 .I sys_siglist
71 holds the signal description strings
72 indexed by signal number.
73 The
74 .BR strsignal ()
75 function should be
76 used if possible instead of this array.
77 .SH RETURN VALUE
78 The
79 .BR strsignal ()
80 function returns the appropriate description
81 string, or an unknown signal message if the signal number is invalid.
82 On some systems (but not on Linux), NULL may instead be
83 returned for an invalid signal number.
84 .SH CONFORMING TO
85 POSIX.1-2008.
86 Present on Solaris and the BSDs.
87 .SH SEE ALSO
88 .BR psignal (3),
89 .BR strerror (3)
90 .SH COLOPHON
91 This page is part of release 3.68 of the Linux
92 .I man-pages
93 project.
94 A description of the project,
95 information about reporting bugs,
96 and the latest version of this page,
97 can be found at
98 \%http://www.kernel.org/doc/man\-pages/.