OSDN Git Service

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