Merge from vendor branch BINUTILS:
[dragonfly.git] / lib / libc / gen / err.3
1 .\" Copyright (c) 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by the University of
15 .\"     California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     From: @(#)err.3 8.1 (Berkeley) 6/9/93
33 .\" $FreeBSD: src/lib/libc/gen/err.3,v 1.11.2.6 2001/12/14 18:33:51 ru Exp $
34 .\" $DragonFly: src/lib/libc/gen/err.3,v 1.2 2003/06/17 04:26:42 dillon Exp $
35 .\"
36 .Dd March 6, 1999
37 .Dt ERR 3
38 .Os
39 .Sh NAME
40 .Nm err ,
41 .Nm verr ,
42 .Nm errc ,
43 .Nm verrc ,
44 .Nm errx ,
45 .Nm verrx ,
46 .Nm warn ,
47 .Nm vwarn ,
48 .Nm warnc ,
49 .Nm vwarnc ,
50 .Nm warnx ,
51 .Nm vwarnx ,
52 .Nm err_set_exit ,
53 .Nm err_set_file
54 .Nd formatted error messages
55 .Sh LIBRARY
56 .Lb libc
57 .Sh SYNOPSIS
58 .In err.h
59 .Ft void
60 .Fn err "int eval" "const char *fmt" "..."
61 .Ft void
62 .Fn err_set_exit "void (*exitf)(int)"
63 .Ft void
64 .Fn err_set_file "void *vfp"
65 .Ft void
66 .Fn errc "int eval" "int code" "const char *fmt" "..."
67 .Ft void
68 .Fn errx "int eval" "const char *fmt" "..."
69 .Ft void
70 .Fn warn "const char *fmt" "..."
71 .Ft void
72 .Fn warnc "int code" "const char *fmt" "..."
73 .Ft void
74 .Fn warnx "const char *fmt" "..."
75 .In stdarg.h
76 .Ft void
77 .Fn verr "int eval" "const char *fmt" "va_list args"
78 .Ft void
79 .Fn verrc "int eval" "int code" "const char *fmt" "va_list args"
80 .Ft void
81 .Fn verrx "int eval" "const char *fmt" "va_list args"
82 .Ft void
83 .Fn vwarn "const char *fmt" "va_list args"
84 .Ft void
85 .Fn vwarnc "int code" "const char *fmt" "va_list args"
86 .Ft void
87 .Fn vwarnx "const char *fmt" "va_list args"
88 .Sh DESCRIPTION
89 The
90 .Fn err
91 and
92 .Fn warn
93 family of functions display a formatted error message on the standard
94 error output, or on another file specified using the
95 .Fn err_set_file
96 function.
97 In all cases, the last component of the program name, a colon character,
98 and a space are output.
99 If the
100 .Fa fmt
101 argument is not NULL, the
102 .Xr printf 3
103 -like formatted error message is output.
104 The output is terminated by a newline character.
105 .Pp
106 The
107 .Fn err ,
108 .Fn errc ,
109 .Fn verr ,
110 .Fn verrc ,
111 .Fn warn ,
112 .Fn warnc ,
113 .Fn vwarn ,
114 and
115 .Fn vwarnc
116 functions append an error message obtained from
117 .Xr strerror 3
118 based on a code or the global variable
119 .Va errno ,
120 preceded by another colon and space unless the
121 .Fa fmt
122 argument is
123 .Dv NULL .
124 .Pp
125 In the case of the
126 .Fn errc ,
127 .Fn verrc ,
128 .Fn warnc ,
129 and
130 .Fn vwarnc
131 functions,
132 the
133 .Fa code
134 argument is used to look up the error message.
135 .Pp
136 The
137 .Fn err ,
138 .Fn verr ,
139 .Fn warn ,
140 and
141 .Fn vwarn
142 functions use the global variable
143 .Va errno
144 to look up the error message.
145 .Pp
146 The
147 .Fn errx
148 and
149 .Fn warnx
150 functions do not append an error message.
151 .Pp
152 The
153 .Fn err ,
154 .Fn verr ,
155 .Fn errc ,
156 .Fn verrc ,
157 .Fn errx ,
158 and
159 .Fn verrx
160 functions do not return, but exit with the value of the argument
161 .Fa eval .
162 The
163 .Fn err_set_exit
164 function can be used to specify a function which is called before
165 .Xr exit 3
166 to perform any necessary cleanup; passing a null function pointer for
167 .Va exitf
168 resets the hook to do nothing.
169 The
170 .Fn err_set_file
171 function sets the output stream used by the other functions.
172 Its
173 .Fa vfp
174 argument must be either a pointer to an open stream
175 (possibly already converted to void *)
176 or a null pointer
177 (in which case the output stream is set to standard error).
178 .Sh EXAMPLES
179 Display the current errno information string and exit:
180 .Bd -literal -offset indent
181 if ((p = malloc(size)) == NULL)
182         err(1, NULL);
183 if ((fd = open(file_name, O_RDONLY, 0)) == -1)
184         err(1, "%s", file_name);
185 .Ed
186 .Pp
187 Display an error message and exit:
188 .Bd -literal -offset indent
189 if (tm.tm_hour < START_TIME)
190         errx(1, "too early, wait until %s", start_time_string);
191 .Ed
192 .Pp
193 Warn of an error:
194 .Bd -literal -offset indent
195 if ((fd = open(raw_device, O_RDONLY, 0)) == -1)
196         warnx("%s: %s: trying the block device",
197             raw_device, strerror(errno));
198 if ((fd = open(block_device, O_RDONLY, 0)) == -1)
199         err(1, "%s", block_device);
200 .Ed
201 .Pp
202 Warn of an error without using the global variable
203 .Va errno :
204 .Bd -literal -offset indent
205 error = my_function();  /* returns a value from <errno.h> */
206 if (error != 0)
207         warnc(error, "my_function");
208 .Ed
209 .Sh SEE ALSO
210 .Xr exit 3 ,
211 .Xr printf 3 ,
212 .Xr strerror 3
213 .Sh HISTORY
214 The
215 .Fn err
216 and
217 .Fn warn
218 functions first appeared in
219 .Bx 4.4 .
220 The
221 .Fn err_set_exit
222 and
223 .Fn err_set_file
224 functions first appeared in
225 .Fx 2.1 .
226 The
227 .Fn errc
228 and
229 .Fn warnc
230 functions first appeared in
231 .Fx 3.0 .