OSDN Git Service

(split) LDP: Update original to LDP v3.38.
[linuxjm/LDP_man-pages.git] / original / man3 / 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.5 2001/08/17 15:42:32 ru Exp $
34 .\"
35 .\" 2011-09-10, mtk, Converted from mdoc to man macros
36 .\"
37 .TH ERR 3 2012-03-15 "Linux" "Linux Programmer's Manual"
38 .SH NAME
39 err, verr, errx, verrx, warn, vwarn, warnx, vwarnx \- formatted error messages
40 .SH SYNOPSIS
41 .nf
42 .B #include <err.h>
43 .sp
44 .BI "void err(int " eval ", const char *" fmt ", ...);"
45 .sp
46 .BI "void errx(int " eval ", const char *" fmt ", ...);"
47 .sp
48 .BI "void warn(const char *" fmt ", ...);"
49 .sp
50 .BI "void warnx(const char *" fmt ", ...);"
51 .sp
52 .B #include <stdarg.h>
53 .sp
54 .BI "void verr(int " eval ", const char *" fmt ", va_list " args );
55 .sp
56 .BI "void verrx(int " eval ", const char *" fmt ", va_list " args );
57 .sp
58 .BI "void vwarn(const char *" fmt ", va_list " args );
59 .sp
60 .BI "void vwarnx(const char *" fmt ", va_list " args );
61 .fi
62 .SH DESCRIPTION
63 The
64 .BR err ()
65 and
66 .BR warn ()
67 family of functions display a formatted error message on the standard
68 error output.
69 In all cases, the last component of the program name, a colon character,
70 and a space are output.
71 If the
72 .I fmt
73 argument is not NULL, the
74 .BR printf (3)-like
75 formatted error message is output.
76 The output is terminated by a newline character.
77 .PP
78 The
79 .BR err (),
80 .BR verr (),
81 .BR warn (),
82 and
83 .BR vwarn ()
84 functions append an error message obtained from
85 .BR strerror (3)
86 based on the global variable
87 .IR errno ,
88 preceded by another colon and space unless the
89 .I fmt
90 argument is
91 NULL.
92 .PP
93 The
94 .BR errx ()
95 and
96 .BR warnx ()
97 functions do not append an error message.
98 .PP
99 The
100 .BR err (),
101 .BR verr (),
102 .BR errx (),
103 and
104 .BR verrx ()
105 functions do not return, but exit with the value of the argument
106 .IR eval .
107 .SH "CONFORMING TO"
108 These functions are nonstandard BSD extensions.
109 .\" .SH HISTORY
110 .\" The
111 .\" .BR err ()
112 .\" and
113 .\" .BR warn ()
114 .\" functions first appeared in
115 .\" 4.4BSD.
116 .SH EXAMPLE
117 Display the current
118 .I errno
119 information string and exit:
120 .in +4n
121 .nf
122
123 if ((p = malloc(size)) == NULL)
124     err(1, NULL);
125 if ((fd = open(file_name, O_RDONLY, 0)) == \-1)
126     err(1, "%s", file_name);
127 .fi
128 .in
129 .PP
130 Display an error message and exit:
131 .in +4n
132 .nf
133
134 if (tm.tm_hour < START_TIME)
135     errx(1, "too early, wait until %s", start_time_string);
136 .fi
137 .in
138 .PP
139 Warn of an error:
140 .in +4n
141 .nf
142
143 if ((fd = open(raw_device, O_RDONLY, 0)) == \-1)
144     warnx("%s: %s: trying the block device",
145             raw_device, strerror(errno));
146 if ((fd = open(block_device, O_RDONLY, 0)) == \-1)
147     err(1, "%s", block_device);
148 .fi
149 .in
150 .SH SEE ALSO
151 .BR error (3),
152 .BR exit (3),
153 .BR perror (3),
154 .BR printf (3),
155 .BR strerror (3)