OSDN Git Service

(split) Apply minor changes from v3.32 to v3.35 in the upstream.
[linuxjm/LDP_man-pages.git] / draft / 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 .\" Japanese Version Copyright (c) 2003  Akihiro MOTOKI
38 .\"         all rights reserved.
39 .\" Translated 2003-03-10, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
40 .\"
41 .TH ERR 3 2011-09-15 "Linux" "Linux Programmer's Manual"
42 .\"O .SH NAME
43 .\"O err, verr, errx, verrx, warn, vwarn, warnx, vwarnx \- formatted error messages
44 .SH Ì¾Á°
45 err, verr, errx, verrx, warn, vwarn, warnx, vwarnx \- ¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤òÀ°·Á¤¹¤ë
46 .Nd 
47 .\"O .SH SYNOPSIS
48 .SH ½ñ¼°
49 .nf
50 .B #include <err.h>
51 .sp
52 .BI "void err(int " eval ", const char *" fmt ", ...);"
53 .sp
54 .BI "void errx(int " eval ", const char *" fmt ", ...);"
55 .sp
56 .BI "void warn(const char *" fmt ", ...);"
57 .sp
58 .BI "void warnx(const char *" fmt ", ...);"
59 .sp
60 .B #include <stdarg.h>
61 .sp
62 .BI "void verr(int " eval ", const char *" fmt ", va_list " args );
63 .sp
64 .BI "void verrx(int " eval ", const char *" fmt ", va_list " args );
65 .sp
66 .BI "void vwarn(const char *" fmt ", va_list " args );
67 .sp
68 .BI "void vwarnx(const char *" fmt ", va_list " args );
69 .fi
70 .\"O .SH DESCRIPTION
71 .SH ÀâÌÀ
72 .\"O The
73 .\"O .BR err ()
74 .\"O and
75 .\"O .BR warn ()
76 .\"O family of functions display a formatted error message on the standard
77 .\"O error output.
78 .BR err ()
79 ´Ø¿ô·²¤È
80 .BR warn ()
81 ´Ø¿ô·²¤Ï¡¢¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤òÀ°·Á¤·¤Æɸ½à¥¨¥é¡¼½ÐÎϤËɽ¼¨¤¹¤ë¡£
82 .\"O In all cases, the last component of the program name, a colon character,
83 .\"O and a space are output.
84 ¤É¤Î´Ø¿ô¤Î¾ì¹ç¤â¡¢(¥Ç¥£¥ì¥¯¥È¥êÉôʬ¤ò¾Ê¤¤¤¿)¥×¥í¥°¥é¥à̾¡¢
85 ¥³¥í¥ó 1¸Ä¡¢¥¹¥Ú¡¼¥¹ 1¸Ä¤¬½ÐÎϤµ¤ì¤ë¡£
86 .\"O If the
87 .\"O .I fmt
88 .\"O argument is not NULL, the
89 .\"O .BR printf (3)-like
90 .\"O formatted error message is output.
91 .I fmt
92 °ú¤­¿ô¤¬ NULL ¤Ç¤Ê¤¤¾ì¹ç¡¢
93 .BR printf (3)
94 ¤ÈƱÍͤËÀ°·Á¤¬¹Ô¤ï¤ì¡¢¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤¬½ÐÎϤµ¤ì¤ë¡£
95 .\"O The output is terminated by a newline character.
96 ½ÐÎϤϲþ¹Ôʸ»ú¤Ç½ª¤ï¤ë¡£
97 .PP
98 .\"O The
99 .\"O .BR err (),
100 .\"O .BR verr (),
101 .\"O .BR warn (),
102 .\"O and
103 .\"O .BR vwarn ()
104 .\"O functions append an error message obtained from
105 .\"O .BR strerror (3)
106 .\"O based on the global variable
107 .\"O .IR errno ,
108 .\"O preceded by another colon and space unless the
109 .\"O .I fmt
110 .\"O argument is
111 .\"O NULL.
112 \"O motoki: based on a code or ¡Á ¤Î¡Öa code¡×¤È¤Ï¡©
113 ´Ø¿ô
114 .BR err (),
115 .BR verr (),
116 .BR warn (),
117 .BR vwarn ()
118 ¤Ï¡¢¥°¥í¡¼¥Ð¥ëÊÑ¿ô
119 .I errno
120 ¤Ë´ð¤Å¤¤¤Æ
121 .BR strerror (3)
122 ¤«¤éÆÀ¤¿¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ¹¤ë¡£
123 .I fmt
124 °ú¤­¿ô¤¬ NULL
125 ¤Ç¤Ê¤¤¾ì¹ç¤Ï¡¢°ì¸Ä¤º¤Ä¤Î¥³¥í¥ó¤È¥¹¥Ú¡¼¥¹¤Ë³¤±¤Æ½ÐÎϤ¹¤ë¡£
126 .PP
127 .\"O The
128 .\"O .BR errx ()
129 .\"O and
130 .\"O .BR warnx ()
131 .\"O functions do not append an error message.
132 ´Ø¿ô
133 .BR errx (),
134 .BR warnx ()
135 ¤Ï¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤òÉÕ¤±²Ã¤¨¤Ê¤¤¡£
136 .PP
137 .\"O The
138 .\"O .BR err (),
139 .\"O .BR verr (),
140 .\"O .BR errx (),
141 .\"O and
142 .\"O .BR verrx ()
143 .\"O functions do not return, but exit with the value of the argument
144 .\"O .I eval .
145 ´Ø¿ô
146 .BR err (),
147 .BR verr (),
148 .BR errx (),
149 .BR verrx ()
150 ¤ÏÊÖ¤êÃͤòÊÖ¤µ¤Ê¤¤¤¬¡¢°ú¤­¿ô
151 .I eval
152 ¤ÎÃͤò exit status ¤ËÀßÄꤷ½ªÎ»¤¹¤ë¡£
153 .\"O .SH EXAMPLES
154 .SH Îã
155 .\"O Display the current
156 .\"O .I errno
157 .\"O information string and exit:
158 ¸½ºß¤Î
159 .I errno
160 ¤Î¾ðÊó¤òɽ¼¨¤·¡¢½ªÎ»¤¹¤ë:
161 .in +4n
162 .nf
163
164 if ((p = malloc(size)) == NULL)
165     err(1, NULL);
166 if ((fd = open(file_name, O_RDONLY, 0)) == \-1)
167     err(1, "%s", file_name);
168 .fi
169 .in
170 .PP
171 .\"O Display an error message and exit:
172 ¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤·¡¢½ªÎ»¤¹¤ë:
173 .in +4n
174 .nf
175
176 if (tm.tm_hour < START_TIME)
177     errx(1, "too early, wait until %s", start_time_string);
178 .fi
179 .in
180 .PP
181 .\"O Warn of an error:
182 ¥¨¥é¡¼¤ò·Ù¹ðɽ¼¨¤¹¤ë:
183 .in +4n
184 .nf
185
186 if ((fd = open(raw_device, O_RDONLY, 0)) == \-1)
187     warnx("%s: %s: trying the block device",
188             raw_device, strerror(errno));
189 if ((fd = open(block_device, O_RDONLY, 0)) == \-1)
190     err(1, "%s", block_device);
191 .fi
192 .in
193 .\"O .SH "CONFORMING TO"
194 .SH ½àµò
195 .\"O These functions are nonstandard BSD extensions.
196 ¤³¤ì¤é¤Î´Ø¿ô¤ÏÈóɸ½à¤Î BSD ³ÈÄ¥¤Ç¤¢¤ë¡£
197 .\"O .\" .SH HISTORY
198 .\" .SH Îò»Ë
199 .\"O .\" The
200 .\"O .\" .BR err ()
201 .\"O .\" and
202 .\"O .\" .BR warn ()
203 .\"O .\" functions first appeared in
204 .\"O .\" 4.4BSD.
205 .\" ´Ø¿ô
206 .\" .BR err ()
207 .\" ¤È
208 .\" .BR warn ()
209 .\" ¤Ï
210 .\" 4.4BSD
211 .\" ¤Ç½é¤á¤ÆÅо줷¤¿¡£
212 .\"O .SH SEE ALSO
213 .SH ´ØÏ¢¹àÌÜ
214 .BR error (3),
215 .BR exit (3),
216 .BR perror (3),
217 .BR printf (3),
218 .BR strerror (3)