]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/strerror.3
strerror.3: Correct description of error return for XSI strerror_r()
[thirdparty/man-pages.git] / man3 / strerror.3
CommitLineData
fea681da 1.\" Copyright (C) 1993 David Metcalfe (david@prism.demon.co.uk)
c11b1abf 2.\" and Copyright (C) 2005, Michael Kerrisk <mtk.manpages@gmail.com>
fea681da
MK
3.\"
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.
23.\"
24.\" References consulted:
25.\" Linux libc source code
26.\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
27.\" 386BSD man pages
28.\" Modified Sat Jul 24 18:05:30 1993 by Rik Faith <faith@cs.unc.edu>
29.\" Modified Fri Feb 16 14:25:17 1996 by Andries Brouwer <aeb@cwi.nl>
30.\" Modified Sun Jul 21 20:55:44 1996 by Andries Brouwer <aeb@cwi.nl>
31.\" Modified Mon Oct 15 21:16:25 2001 by John Levon <moz@compsoc.man.ac.uk>
32.\" Modified Tue Oct 16 00:04:43 2001 by Andries Brouwer <aeb@cwi.nl>
33.\" Modified Fri Jun 20 03:04:30 2003 by Andries Brouwer <aeb@cwi.nl>
ed07f09a
MK
34.\" 2005-12-13, mtk, Substantial rewrite of strerror_r() description
35.\" Addition of extra material on portability and standards.
fea681da 36.\"
a5fa6dfd 37.TH STRERROR 3 2012-04-22 "" "Linux Programmer's Manual"
fea681da 38.SH NAME
6e84dfa1 39strerror, strerror_r \- return string describing error number
fea681da
MK
40.SH SYNOPSIS
41.nf
42.B #include <string.h>
43.sp
44.BI "char *strerror(int " errnum );
b99cf1e0 45.sp
2d50dd9e
MK
46.BI "int strerror_r(int " errnum ", char *" buf ", size_t " buflen );
47 /* XSI-compliant */
48.sp
6e84dfa1 49.BI "char *strerror_r(int " errnum ", char *" buf ", size_t " buflen );
2d50dd9e 50 /* GNU-specific */
cc4615cc 51.fi
6e84dfa1 52.sp
cc4615cc
MK
53.in -4n
54Feature Test Macro Requirements for glibc (see
55.BR feature_test_macros (7)):
56.in
b99cf1e0 57.sp
cc4615cc
MK
58The XSI-compliant version of
59.BR strerror_r ()
60is provided if:
61.br
98dbe7af 62(_POSIX_C_SOURCE\ >=\ 200112L || _XOPEN_SOURCE\ >=\ 600) && !\ _GNU_SOURCE
2d50dd9e
MK
63.br
64Otherwise, the GNU-specific version is provided.
fea681da 65.SH DESCRIPTION
60a90ecd
MK
66The
67.BR strerror ()
c9980d2e 68function returns a pointer to a string that describes the error
ec5a588f
MK
69code passed in the argument \fIerrnum\fP, possibly using the
70.B LC_MESSAGES
fea681da
MK
71part of the current locale to select the appropriate language.
72This string must not be modified by the application, but may be
60a90ecd
MK
73modified by a subsequent call to
74.BR perror (3)
75or
76.BR strerror ().
fea681da
MK
77No library function will modify this string.
78
60a90ecd
MK
79The
80.BR strerror_r ()
81function is similar to
82.BR strerror (),
83but is
c13182ef
MK
84thread safe.
85This function is available in two versions:
cc4615cc
MK
86an XSI-compliant version specified in POSIX.1-2001
87(available since glibc 2.3.4),
6e84dfa1 88and a GNU-specific version (available since glibc 2.0).
cc4615cc
MK
89The XSI-compliant version is provided with the feature test macros
90settings shown in the SYNOPSIS;
6e84dfa1 91otherwise the GNU-specific version is provided.
cc4615cc
MK
92If no feature test macros are explicitly defined,
93then (since glibc 2.4)
0daa9e92 94.B _POSIX_SOURCE
cc4615cc
MK
95is defined by default with the value
96200112L, so that the XSI-compliant version of
97.BR strerror_r ()
98is provided by default.
6e84dfa1 99
c13182ef
MK
100The XSI-compliant
101.BR strerror_r ()
6e84dfa1
MK
102is preferred for portable applications.
103It returns the error string in the user-supplied buffer
fea681da
MK
104.I buf
105of length
6e84dfa1
MK
106.IR buflen .
107
c13182ef
MK
108The GNU-specific
109.BR strerror_r ()
6e84dfa1
MK
110returns a pointer to a string containing the error message.
111This may be either a pointer to a string that the function stores in
112.IR buf ,
113or a pointer to some (immutable) static string
114(in which case
c13182ef 115.I buf
6e84dfa1 116is unused).
c13182ef 117If the function stores a string in
6e84dfa1
MK
118.IR buf ,
119then at most
120.I buflen
121bytes are stored (the string may be truncated if
122.I buflen
123is too small) and the string always includes a terminating null byte.
fea681da 124.SH "RETURN VALUE"
60a90ecd
MK
125The
126.BR strerror ()
2d50dd9e 127and the GNU-specific
60a90ecd
MK
128.BR strerror_r ()
129functions return
c13182ef 130the appropriate error description string,
6e84dfa1 131or an "Unknown error nnn" message if the error number is unknown.
6e84dfa1 132
60a90ecd
MK
133The XSI-compliant
134.BR strerror_r ()
135function returns 0 on success;
a5fa6dfd 136on error, a (positive) error number is returned.
fea681da
MK
137.SH ERRORS
138.TP
139.B EINVAL
140The value of
141.I errnum
142is not a valid error number.
143.TP
144.B ERANGE
145Insufficient storage was supplied to contain the error description string.
fea681da 146.SH "CONFORMING TO"
60a90ecd
MK
147.BR strerror ()
148is specified by POSIX.1-2001, C89, C99.
149.BR strerror_r ()
150is specified by POSIX.1-2001.
6e84dfa1 151
c13182ef 152The GNU-specific
63aa9df0 153.BR strerror_r ()
c8f2dd47 154function is a nonstandard extension.
6e84dfa1 155
68e1685c 156POSIX.1-2001 permits
6e84dfa1 157.BR strerror ()
c13182ef 158to set
6e84dfa1 159.I errno
c13182ef 160if the call encounters an error, but does not specify what
6e84dfa1
MK
161value should be returned as the function result in the event of an error.
162On some systems,
163.\" e.g., Solaris 8, HP-UX 11
164.BR strerror ()
165returns NULL if the error number is unknown.
c13182ef 166On other systems,
6e84dfa1
MK
167.\" e.g., FreeBSD 5.4, Tru64 5.1B
168.BR strerror ()
c13182ef 169returns a string something like "Error nnn occurred" and sets
6e84dfa1 170.I errno
c13182ef 171to
6e84dfa1
MK
172.B EINVAL
173if the error number is unknown.
fea681da 174.SH "SEE ALSO"
d7871cf9 175.BR err (3),
fea681da 176.BR errno (3),
37b6aec3 177.BR error (3),
fea681da 178.BR perror (3),
cc4615cc 179.BR strsignal (3)