]> git.ipfire.org Git - thirdparty/man-pages.git/blame_incremental - man3/perror.3
signal.7: Note async-signal-safe functions added by POSIX.1-2008 TC1
[thirdparty/man-pages.git] / man3 / perror.3
... / ...
CommitLineData
1.\" Copyright (c) 1994 Michael Haardt (michael@moria.de), 1994-06-04
2.\" Copyright (c) 1995 Michael Haardt
3.\" (michael@cantor.informatik.rwth-aachen.de), 1995-03-16
4.\" Copyright (c) 1996 Andries Brouwer (aeb@cwi.nl), 1996-01-13
5.\"
6.\" %%%LICENSE_START(GPLv2+_DOC_FULL)
7.\" This is free documentation; you can redistribute it and/or
8.\" modify it under the terms of the GNU General Public License as
9.\" published by the Free Software Foundation; either version 2 of
10.\" the License, or (at your option) any later version.
11.\"
12.\" The GNU General Public License's references to "object code"
13.\" and "executables" are to be interpreted as the output of any
14.\" document formatting or typesetting system, including
15.\" intermediate and printed output.
16.\"
17.\" This manual is distributed in the hope that it will be useful,
18.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
19.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20.\" GNU General Public License for more details.
21.\"
22.\" You should have received a copy of the GNU General Public
23.\" License along with this manual; if not, see
24.\" <http://www.gnu.org/licenses/>.
25.\" %%%LICENSE_END
26.\"
27.\" 1996-01-13 aeb: merged in some text contributed by Melvin Smith
28.\" (msmith@falcon.mercer.peachnet.edu) and various other changes.
29.\" Modified 1996-05-16 by Martin Schulze (joey@infodrom.north.de)
30.\"
31.TH PERROR 3 2015-07-23 "" "Linux Programmer's Manual"
32.SH NAME
33perror \- print a system error message
34.SH SYNOPSIS
35.B #include <stdio.h>
36.sp
37.BI "void perror(const char *" s );
38.sp
39.B #include <errno.h>
40.sp
41.BI "const char * const " sys_errlist [];
42.br
43.BI "int " sys_nerr ;
44.br
45.BI "int " errno "; \fR/* Not really declared this way; see errno(3) */"
46.sp
47.in -4n
48Feature Test Macro Requirements for glibc (see
49.BR feature_test_macros (7)):
50.in
51.sp
52.IR sys_errlist ,
53.IR sys_nerr :
54_BSD_SOURCE
55.SH DESCRIPTION
56The
57.BR perror ()
58function produces a message on standard error describing the last
59error encountered during a call to a system or library function.
60
61First (if
62.I s
63is not NULL and
64.I *s
65is not a null byte (\(aq\\0\(aq)), the argument string
66.I s
67is printed, followed by a colon and a blank.
68Then an error message corresponding to the current value of
69.I errno
70and a new-line.
71
72To be of most use, the argument string should include the name
73of the function that incurred the error.
74
75The global error list
76.IR sys_errlist "[],"
77which can be indexed by
78.IR errno ,
79can be used to obtain the error message without the newline.
80The largest message number provided in the table is
81.IR sys_nerr "\-1."
82Be careful when directly accessing this list, because new error values
83may not have been added to
84.IR sys_errlist "[]."
85The use of
86.IR sys_errlist "[]"
87is nowadays deprecated.
88
89When a system call fails, it usually returns \-1 and sets the
90variable
91.I errno
92to a value describing what went wrong.
93(These values can be found in
94.IR <errno.h> .)
95Many library functions do likewise.
96The function
97.BR perror ()
98serves to translate this error code into human-readable form.
99Note that
100.I errno
101is undefined after a successful sysme call or library function call:
102this call may well change this variable, even though it succeeds,
103for example because it internally used some other library function that failed.
104Thus, if a failing call is not immediately followed by a call to
105.BR perror (),
106the value of
107.I errno
108should be saved.
109.SH ATTRIBUTES
110For an explanation of the terms used in this section, see
111.BR attributes (7).
112.TS
113allbox;
114lb lb lb
115l l l.
116Interface Attribute Value
117T{
118.BR perror ()
119T} Thread safety MT-Safe race:stderr
120.TE
121
122.SH CONFORMING TO
123.BR perror (),
124.IR errno :
125POSIX.1-2001, POSIX.1-2008, C89, C99, 4.3BSD.
126
127The externals
128.I sys_nerr
129and
130.I sys_errlist
131derive from BSD, but are not specified in POSIX.1.
132.SH NOTES
133The externals
134.I sys_nerr
135and
136.I sys_errlist
137are defined by glibc, but in
138.IR <stdio.h> .
139.\" and only when _BSD_SOURCE is defined.
140.\" When
141.\" .B _GNU_SOURCE
142.\" is defined, the symbols
143.\" .I _sys_nerr
144.\" and
145.\" .I _sys_errlist
146.\" are provided.
147.SH SEE ALSO
148.BR err (3),
149.BR errno (3),
150.BR error (3),
151.BR strerror (3)