OSDN Git Service

2b4a15ce5360c767ecbac9e2d05e73ad7e6be3f3
[linuxjm/LDP_man-pages.git] / po4a / epoll / po / ja.po
1 # SOME DESCRIPTIVE TITLE
2 # Copyright (C) YEAR Free Software Foundation, Inc.
3 # This file is distributed under the same license as the PACKAGE package.
4 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5 #
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: PACKAGE VERSION\n"
9 "POT-Creation-Date: 2012-03-22 04:25+0900\n"
10 "PO-Revision-Date: 2012-03-22 20:27+0900\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: LANGUAGE <LL@li.org>\n"
13 "Language: \n"
14 "MIME-Version: 1.0\n"
15 "Content-Type: text/plain; charset=UTF-8\n"
16 "Content-Transfer-Encoding: 8bit\n"
17
18 #. type: TH
19 #: build/C/man7/epoll.7:21
20 #, no-wrap
21 msgid "EPOLL"
22 msgstr "EPOLL"
23
24 #. type: TH
25 #: build/C/man7/epoll.7:21
26 #, no-wrap
27 msgid "2009-02-01"
28 msgstr "2009-02-01"
29
30 #. type: TH
31 #: build/C/man7/epoll.7:21 build/C/man2/epoll_create.2:25
32 #: build/C/man2/epoll_ctl.2:21 build/C/man2/epoll_wait.2:23
33 #: build/C/man2/poll.2:31
34 #, no-wrap
35 msgid "Linux"
36 msgstr "Linux"
37
38 #. type: TH
39 #: build/C/man7/epoll.7:21 build/C/man2/epoll_create.2:25
40 #: build/C/man2/epoll_ctl.2:21 build/C/man2/epoll_wait.2:23
41 #: build/C/man2/poll.2:31
42 #, no-wrap
43 msgid "Linux Programmer's Manual"
44 msgstr "Linux Programmer's Manual"
45
46 #. type: SH
47 #: build/C/man7/epoll.7:22 build/C/man2/epoll_create.2:26
48 #: build/C/man2/epoll_ctl.2:22 build/C/man2/epoll_wait.2:24
49 #: build/C/man2/poll.2:32
50 #, no-wrap
51 msgid "NAME"
52 msgstr "名前"
53
54 #. type: Plain text
55 #: build/C/man7/epoll.7:24
56 msgid "epoll - I/O event notification facility"
57 msgstr "epoll - I/O イベント通知機能"
58
59 #. type: SH
60 #: build/C/man7/epoll.7:24 build/C/man2/epoll_create.2:28
61 #: build/C/man2/epoll_ctl.2:24 build/C/man2/epoll_wait.2:26
62 #: build/C/man2/poll.2:34
63 #, no-wrap
64 msgid "SYNOPSIS"
65 msgstr "書式"
66
67 #. type: Plain text
68 #: build/C/man7/epoll.7:26 build/C/man2/epoll_ctl.2:26
69 msgid "B<#include E<lt>sys/epoll.hE<gt>>"
70 msgstr "B<#include E<lt>sys/epoll.hE<gt>>"
71
72 #. type: SH
73 #: build/C/man7/epoll.7:26 build/C/man2/epoll_create.2:35
74 #: build/C/man2/epoll_ctl.2:29 build/C/man2/epoll_wait.2:36
75 #: build/C/man2/poll.2:46
76 #, no-wrap
77 msgid "DESCRIPTION"
78 msgstr "説明"
79
80 #. type: Plain text
81 #: build/C/man7/epoll.7:36
82 msgid ""
83 "B<epoll> is a variant of B<poll>(2)  that can be used either as an edge-"
84 "triggered or a level-triggered interface and scales well to large numbers of "
85 "watched file descriptors.  The following system calls are provided to create "
86 "and manage an B<epoll> instance:"
87 msgstr ""
88 "B<epoll> は B<poll>(2)  の一種であり、エッジトリガインタフェースと レベルトリ"
89 "ガインタフェースのどちらとしても使用することができ、 監視するファイルディスク"
90 "リプタの数が多い場合にも使用できる。 B<epoll> インスタンスの作成や管理を行う"
91 "ために 以下のシステムコールが提供されている:"
92
93 #. type: IP
94 #: build/C/man7/epoll.7:36 build/C/man7/epoll.7:46 build/C/man7/epoll.7:54
95 #, no-wrap
96 msgid "*"
97 msgstr "*"
98
99 #. type: Plain text
100 #: build/C/man7/epoll.7:46
101 msgid ""
102 "An B<epoll> instance created by B<epoll_create>(2), which returns a file "
103 "descriptor referring to the epoll instance.  (The more recent "
104 "B<epoll_create1>(2)  extends the functionality of B<epoll_create>(2).)"
105 msgstr ""
106 "B<epoll> インスタンスは B<epoll_create>(2)  で作成される。 B<epoll_create>"
107 "(2)  は作成した epoll インスタンスを参照するファイルディスクリプタを返す。 "
108 "(もっと新しい B<epoll_create1>(2)  では、 B<epoll_create>(2)  の機能が拡張さ"
109 "れている)。"
110
111 #. type: Plain text
112 #: build/C/man7/epoll.7:54
113 msgid ""
114 "Interest in particular file descriptors is then registered via B<epoll_ctl>"
115 "(2).  The set of file descriptors currently registered on an B<epoll> "
116 "instance is sometimes called an I<epoll> set."
117 msgstr ""
118 "特定のファイルディスクリプタに対する監視内容を B<epoll_ctl>(2)  で登録する。 "
119 "B<epoll> インスタンスに現在登録されているファイルディスクリプタの集合は "
120 "I<epoll> 集合と呼ばれることもある。"
121
122 #. type: Plain text
123 #: build/C/man7/epoll.7:57
124 msgid "Finally, the actual wait is started by B<epoll_wait>(2)."
125 msgstr "最後に B<epoll_wait>(2)  で実際のイベント待ちを開始する。"
126
127 #. type: SS
128 #: build/C/man7/epoll.7:57
129 #, no-wrap
130 msgid "Level-Triggered and Edge-Triggered"
131 msgstr "レベルトリガとエッジトリガ"
132
133 #. type: Plain text
134 #: build/C/man7/epoll.7:66
135 msgid ""
136 "The B<epoll> event distribution interface is able to behave both as edge-"
137 "triggered (ET) and as level-triggered (LT).  The difference between the two "
138 "mechanisms can be described as follows.  Suppose that this scenario happens:"
139 msgstr ""
140 "B<epoll> イベント配送 (distribution) インタフェースは、 エッジトリガ (ET) と"
141 "してもレベルトリガ (LT) としても動作させることができる。 二つの配送機構の違い"
142 "は、次のように説明できる。 このようなシナリオが起こったとしよう:"
143
144 #. type: IP
145 #: build/C/man7/epoll.7:66
146 #, no-wrap
147 msgid "1."
148 msgstr "1."
149
150 #. type: Plain text
151 #: build/C/man7/epoll.7:72
152 msgid ""
153 "The file descriptor that represents the read side of a pipe (I<rfd>)  is "
154 "registered on the B<epoll> instance."
155 msgstr ""
156 "パイプの読み込み側を表すファイルディスクリプタ (I<rfd>)  が B<epoll> インスタ"
157 "ンスに登録される。"
158
159 #. type: IP
160 #: build/C/man7/epoll.7:72
161 #, no-wrap
162 msgid "2."
163 msgstr "2."
164
165 #. type: Plain text
166 #: build/C/man7/epoll.7:74
167 msgid "A pipe writer writes 2 kB of data on the write side of the pipe."
168 msgstr ""
169 "パイプへ書き込むプログラムが 2 kB のデータをパイプの書き込み側へ書き込む。"
170
171 #. type: IP
172 #: build/C/man7/epoll.7:74
173 #, no-wrap
174 msgid "3."
175 msgstr "3."
176
177 #. type: Plain text
178 #: build/C/man7/epoll.7:80
179 msgid ""
180 "A call to B<epoll_wait>(2)  is done that will return I<rfd> as a ready file "
181 "descriptor."
182 msgstr ""
183 "B<epoll_wait>(2)  を呼び出すと、読み込み可能 (ready) なファイルディスクリプタ"
184 "として I<rfd> が返る。"
185
186 #. type: IP
187 #: build/C/man7/epoll.7:80
188 #, no-wrap
189 msgid "4."
190 msgstr "4."
191
192 #. type: Plain text
193 #: build/C/man7/epoll.7:83
194 msgid "The pipe reader reads 1 kB of data from I<rfd>."
195 msgstr "パイプから読み出すプログラムが、1 kB のデータを I<rfd> から読み出す。"
196
197 #. type: IP
198 #: build/C/man7/epoll.7:83
199 #, no-wrap
200 msgid "5."
201 msgstr "5."
202
203 #. type: Plain text
204 #: build/C/man7/epoll.7:87
205 msgid "A call to B<epoll_wait>(2)  is done."
206 msgstr "B<epoll_wait>(2)  の呼び出しが行われる。"
207
208 #. type: Plain text
209 #: build/C/man7/epoll.7:122
210 msgid ""
211 "If the I<rfd> file descriptor has been added to the B<epoll> interface using "
212 "the B<EPOLLET> (edge-triggered)  flag, the call to B<epoll_wait>(2)  done in "
213 "step B<5> will probably hang despite the available data still present in the "
214 "file input buffer; meanwhile the remote peer might be expecting a response "
215 "based on the data it already sent.  The reason for this is that edge-"
216 "triggered mode only delivers events when changes occur on the monitored file "
217 "descriptor.  So, in step B<5> the caller might end up waiting for some data "
218 "that is already present inside the input buffer.  In the above example, an "
219 "event on I<rfd> will be generated because of the write done in B<2> and the "
220 "event is consumed in B<3>.  Since the read operation done in B<4> does not "
221 "consume the whole buffer data, the call to B<epoll_wait>(2)  done in step "
222 "B<5> might block indefinitely."
223 msgstr ""
224 "I<rfd> ファイルディスクリプタが B<EPOLLET> フラグ (エッジトリガ) を使って "
225 "B<epoll> に追加されていると、 利用可能なデータがファイル入力バッファにまだ存"
226 "在するにもかかわらず ステップ B<5> の B<epoll_wait>(2)  の呼び出しでハングす"
227 "る可能性がある。 その一方で、リモートの接続先 (peer) は既に送られたデータに "
228 "基づいて応答を期待しているかもしれない。 このようなことが起こる理由は、エッジ"
229 "トリガイベント配送では、 モニタしているファイルでイベントが起ったときにのみイ"
230 "ベントが 配送されるためである。 したがって、ステップ B<5> では、呼び出し側は"
231 "結果的に 入力バッファ内にすで存在するデータを待つことになるかもしれない。 上"
232 "記の例では、 B<2> で行われた書き込みによって I<rfd> に関するイベントが生成さ"
233 "れ、 B<3> でイベントが消費 (consume) される。 B<4> で行われる読み込み操作で"
234 "は、全部のバッファデータを消費しないので、 ステップ B<5> で行われる "
235 "B<epoll_wait>(2)  の呼び出しが 無期限に停止 (block) するかもしれない。"
236
237 #. type: Plain text
238 #: build/C/man7/epoll.7:132
239 msgid ""
240 "An application that employs the B<EPOLLET> flag should use nonblocking file "
241 "descriptors to avoid having a blocking read or write starve a task that is "
242 "handling multiple file descriptors.  The suggested way to use B<epoll> as an "
243 "edge-triggered (B<EPOLLET>)  interface is as follows:"
244 msgstr ""
245 "B<EPOLLET> フラグを採用するアプリケーションでは、 インタフェースはブロックし"
246 "ない (nonblocking) ファイルディスクリプタを 使うべきである。 これは、ブロック"
247 "される読み込みや書き込みによって、 複数のファイルディスクリプタを扱うタスク"
248 "が 停止してしまうのを避けるためである。 B<epoll> をエッジトリガ "
249 "(B<EPOLLET>)  インタフェースとして使うために提案される方法は以下の通りであ"
250 "る。"
251
252 #. type: TP
253 #: build/C/man7/epoll.7:133
254 #, no-wrap
255 msgid "B<i>"
256 msgstr "B<i>"
257
258 #. type: Plain text
259 #: build/C/man7/epoll.7:136
260 msgid "with nonblocking file descriptors; and"
261 msgstr "ブロックしないファイルディスクリプタと共に使う。"
262
263 #. type: TP
264 #: build/C/man7/epoll.7:136
265 #, no-wrap
266 msgid "B<ii>"
267 msgstr "B<ii>"
268
269 #. type: Plain text
270 #: build/C/man7/epoll.7:144
271 msgid ""
272 "by waiting for an event only after B<read>(2)  or B<write>(2)  return "
273 "B<EAGAIN>."
274 msgstr ""
275 "B<read>(2)  または B<write>(2)  が B<EAGAIN> を返した後でのみ、イベントを待"
276 "つ。"
277
278 #. type: Plain text
279 #: build/C/man7/epoll.7:155
280 msgid ""
281 "By contrast, when used as a level-triggered interface (the default, when "
282 "B<EPOLLET> is not specified), B<epoll> is simply a faster B<poll>(2), and "
283 "can be used wherever the latter is used since it shares the same semantics."
284 msgstr ""
285 "一方、レベルトリガインタフェースとして使う場合\n"
286 " (こちらがデフォルトである、\n"
287 "B<EPOLLET> が指定されなかった場合)、\n"
288 "B<epoll> は単に高速な B<poll>(2) であり、使い方が同じなので、\n"
289 "B<poll>(2) が使われているところではどこでも使用することができる。"
290
291 #. type: Plain text
292 #: build/C/man7/epoll.7:172
293 msgid ""
294 "Since even with edge-triggered B<epoll>, multiple events can be generated "
295 "upon receipt of multiple chunks of data, the caller has the option to "
296 "specify the B<EPOLLONESHOT> flag, to tell B<epoll> to disable the associated "
297 "file descriptor after the receipt of an event with B<epoll_wait>(2).  When "
298 "the B<EPOLLONESHOT> flag is specified, it is the caller's responsibility to "
299 "rearm the file descriptor using B<epoll_ctl>(2)  with B<EPOLL_CTL_MOD>."
300 msgstr ""
301 "エッジトリガを使った場合でも、複数のデータを受信すると複数の B<epoll> イベン"
302 "トが生成されるので、 呼び出し側には B<EPOLLONESHOT> フラグを指定するオプショ"
303 "ンがある。 このフラグは B<epoll> に対して、 B<epoll_wait>(2)  によるイベント"
304 "を受信した後で、関連するファイルディスクリプタを無効にさせる。 "
305 "B<EPOLLONESHOT> フラグが指定された場合、 B<epoll_ctl>(2)  に "
306 "B<EPOLL_CTL_MOD> を指定してファイルディスクリプタを再度使用できるようにするの"
307 "は、 呼び出し側の責任である。"
308
309 #. type: SS
310 #: build/C/man7/epoll.7:172
311 #, no-wrap
312 msgid "/proc interfaces"
313 msgstr "/proc インタフェース"
314
315 #.  Following was added in 2.6.28, but them removed in 2.6.29
316 #.  .TP
317 #.  .IR /proc/sys/fs/epoll/max_user_instances " (since Linux 2.6.28)"
318 #.  This specifies an upper limit on the number of epoll instances
319 #.  that can be created per real user ID.
320 #. type: Plain text
321 #: build/C/man7/epoll.7:180
322 msgid ""
323 "The following interfaces can be used to limit the amount of kernel memory "
324 "consumed by epoll:"
325 msgstr ""
326 "epoll が消費するカーネルメモリの量を制限するために、 以下のインタフェースを使"
327 "用することができる。"
328
329 #. type: TP
330 #: build/C/man7/epoll.7:180
331 #, no-wrap
332 msgid "I</proc/sys/fs/epoll/max_user_watches> (since Linux 2.6.28)"
333 msgstr "I</proc/sys/fs/epoll/max_user_watches> (Linux 2.6.28 以降)"
334
335 #.  2.6.29 (in 2.6.28, the default was 1/32 of lowmem)
336 #. type: Plain text
337 #: build/C/man7/epoll.7:194
338 msgid ""
339 "This specifies a limit on the total number of file descriptors that a user "
340 "can register across all epoll instances on the system.  The limit is per "
341 "real user ID.  Each registered file descriptor costs roughly 90 bytes on a "
342 "32-bit kernel, and roughly 160 bytes on a 64-bit kernel.  Currently, the "
343 "default value for I<max_user_watches> is 1/25 (4%) of the available low "
344 "memory, divided by the registration cost in bytes."
345 msgstr ""
346 "このファイルは、あるユーザがシステム上の全ての epoll インスタンスに 登録でき"
347 "るファイルディスクリプタの総数の上限を規定する。 この上限は実ユーザ ID 単位で"
348 "ある。 登録されたファイルディスクリプタ 1 つが消費するメモリ量は、 32 ビット"
349 "カーネルでおよそ 90 バイト、 64 ビットカーネルでおよそ 160 バイトである。 現"
350 "在のところ、 I<max_user_watches> のデフォルト値は、利用可能なメモリ下限の "
351 "1/25 (4%) であり、 登録で消費されるメモリ量 (バイト単位) で割った値となる。"
352
353 #. type: SS
354 #: build/C/man7/epoll.7:194
355 #, no-wrap
356 msgid "Example for Suggested Usage"
357 msgstr "おすすめな使用例"
358
359 #. type: Plain text
360 #: build/C/man7/epoll.7:223
361 msgid ""
362 "While the usage of B<epoll> when employed as a level-triggered interface "
363 "does have the same semantics as B<poll>(2), the edge-triggered usage "
364 "requires more clarification to avoid stalls in the application event loop.  "
365 "In this example, listener is a nonblocking socket on which B<listen>(2)  has "
366 "been called.  The function I<do_use_fd()> uses the new ready file descriptor "
367 "until B<EAGAIN> is returned by either B<read>(2)  or B<write>(2).  An event-"
368 "driven state machine application should, after having received B<EAGAIN>, "
369 "record its current state so that at the next call to I<do_use_fd()> it will "
370 "continue to B<read>(2)  or B<write>(2)  from where it stopped before."
371 msgstr ""
372 "レベルトリガインタフェースとして使用するときの B<epoll> の使い方は B<poll>"
373 "(2)  と同じである。 しかしエッジトリガとして使う場合は、 アプリケーションのイ"
374 "ベントループでストール (stall) しないように、 使い方をより明確にしておく必要"
375 "がある。 この例では、リスナはブロックしないソケットであり、 B<listen>(2)  が"
376 "呼ばれている。 関数 I<do_use_fd()> は、 B<read>(2)  または B<write>(2)  に"
377 "よって B<EAGAIN> が返されるまでは、新しい準備済みのファイルディスクリプタを使"
378 "う。 イベント駆動ステートマシンアプリケーションは、 B<EAGAIN> を受信した後、"
379 "カレントの状態を記録しておくべきである。 これにより、次の I<do_use_fd()> 呼び"
380 "出しのときに、以前に停止したところから B<read>(2)  または B<write>(2)  を継続"
381 "することができる。"
382
383 #. type: Plain text
384 #: build/C/man7/epoll.7:229
385 #, no-wrap
386 msgid ""
387 "#define MAX_EVENTS 10\n"
388 "struct epoll_event ev, events[MAX_EVENTS];\n"
389 "int listen_sock, conn_sock, nfds, epollfd;\n"
390 msgstr ""
391 "#define MAX_EVENTS 10\n"
392 "struct epoll_event ev, events[MAX_EVENTS];\n"
393 "int listen_sock, conn_sock, nfds, epollfd;\n"
394
395 #. type: Plain text
396 #: build/C/man7/epoll.7:232
397 #, no-wrap
398 msgid ""
399 "/* Set up listening socket, \\(aqlisten_sock\\(aq (socket(),\n"
400 "   bind(), listen()) */\n"
401 msgstr ""
402 "/* Set up listening socket, \\(aqlisten_sock\\(aq (socket(),\n"
403 "   bind(), listen()) */\n"
404
405 #. type: Plain text
406 #: build/C/man7/epoll.7:238
407 #, no-wrap
408 msgid ""
409 "epollfd = epoll_create(10);\n"
410 "if (epollfd == -1) {\n"
411 "    perror(\"epoll_create\");\n"
412 "    exit(EXIT_FAILURE);\n"
413 "}\n"
414 msgstr ""
415 "epollfd = epoll_create(10);\n"
416 "if (epollfd == -1) {\n"
417 "    perror(\"epoll_create\");\n"
418 "    exit(EXIT_FAILURE);\n"
419 "}\n"
420
421 #. type: Plain text
422 #: build/C/man7/epoll.7:245
423 #, no-wrap
424 msgid ""
425 "ev.events = EPOLLIN;\n"
426 "ev.data.fd = listen_sock;\n"
427 "if (epoll_ctl(epollfd, EPOLL_CTL_ADD, listen_sock, &ev) == -1) {\n"
428 "    perror(\"epoll_ctl: listen_sock\");\n"
429 "    exit(EXIT_FAILURE);\n"
430 "}\n"
431 msgstr ""
432 "ev.events = EPOLLIN;\n"
433 "ev.data.fd = listen_sock;\n"
434 "if (epoll_ctl(epollfd, EPOLL_CTL_ADD, listen_sock, &ev) == -1) {\n"
435 "    perror(\"epoll_ctl: listen_sock\");\n"
436 "    exit(EXIT_FAILURE);\n"
437 "}\n"
438
439 #. type: Plain text
440 #: build/C/man7/epoll.7:252
441 #, no-wrap
442 msgid ""
443 "for (;;) {\n"
444 "    nfds = epoll_wait(epollfd, events, MAX_EVENTS, -1);\n"
445 "    if (nfds == -1) {\n"
446 "        perror(\"epoll_pwait\");\n"
447 "        exit(EXIT_FAILURE);\n"
448 "    }\n"
449 msgstr ""
450 "for (;;) {\n"
451 "    nfds = epoll_wait(epollfd, events, MAX_EVENTS, -1);\n"
452 "    if (nfds == -1) {\n"
453 "        perror(\"epoll_pwait\");\n"
454 "        exit(EXIT_FAILURE);\n"
455 "    }\n"
456
457 #. type: Plain text
458 #: build/C/man7/epoll.7:274
459 #, no-wrap
460 msgid ""
461 "    for (n = 0; n E<lt> nfds; ++n) {\n"
462 "        if (events[n].data.fd == listen_sock) {\n"
463 "            conn_sock = accept(listen_sock,\n"
464 "                            (struct sockaddr *) &local, &addrlen);\n"
465 "            if (conn_sock == -1) {\n"
466 "                perror(\"accept\");\n"
467 "                exit(EXIT_FAILURE);\n"
468 "            }\n"
469 "            setnonblocking(conn_sock);\n"
470 "            ev.events = EPOLLIN | EPOLLET;\n"
471 "            ev.data.fd = conn_sock;\n"
472 "            if (epoll_ctl(epollfd, EPOLL_CTL_ADD, conn_sock,\n"
473 "                        &ev) == -1) {\n"
474 "                perror(\"epoll_ctl: conn_sock\");\n"
475 "                exit(EXIT_FAILURE);\n"
476 "            }\n"
477 "        } else {\n"
478 "            do_use_fd(events[n].data.fd);\n"
479 "        }\n"
480 "    }\n"
481 "}\n"
482 msgstr ""
483 "    for (n = 0; n E<lt> nfds; ++n) {\n"
484 "        if (events[n].data.fd == listen_sock) {\n"
485 "            conn_sock = accept(listen_sock,\n"
486 "                            (struct sockaddr *) &local, &addrlen);\n"
487 "            if (conn_sock == -1) {\n"
488 "                perror(\"accept\");\n"
489 "                exit(EXIT_FAILURE);\n"
490 "            }\n"
491 "            setnonblocking(conn_sock);\n"
492 "            ev.events = EPOLLIN | EPOLLET;\n"
493 "            ev.data.fd = conn_sock;\n"
494 "            if (epoll_ctl(epollfd, EPOLL_CTL_ADD, conn_sock,\n"
495 "                        &ev) == -1) {\n"
496 "                perror(\"epoll_ctl: conn_sock\");\n"
497 "                exit(EXIT_FAILURE);\n"
498 "            }\n"
499 "        } else {\n"
500 "            do_use_fd(events[n].data.fd);\n"
501 "        }\n"
502 "    }\n"
503 "}\n"
504
505 #. type: Plain text
506 #: build/C/man7/epoll.7:293
507 msgid ""
508 "When used as an edge-triggered interface, for performance reasons, it is "
509 "possible to add the file descriptor inside the B<epoll> interface "
510 "(B<EPOLL_CTL_ADD>)  once by specifying (B<EPOLLIN>|B<EPOLLOUT>).  This "
511 "allows you to avoid continuously switching between B<EPOLLIN> and "
512 "B<EPOLLOUT> calling B<epoll_ctl>(2)  with B<EPOLL_CTL_MOD>."
513 msgstr ""
514 "エッジトリガインタフェースとして使う場合、性能上の理由により、 一度 "
515 "(B<EPOLLIN>|B<EPOLLOUT>)  を指定してから (B<EPOLL_CTL_ADD> で) ファイルディス"
516 "クリプタを B<epoll> インタフェースに追加することができる。 これにより、 "
517 "B<epoll_ctl>(2)  に B<EPOLL_CTL_MOD> を指定して呼び出すことで B<EPOLLIN> と "
518 "B<EPOLLOUT> の連続的な切り替えが避けられる。"
519
520 #. type: SS
521 #: build/C/man7/epoll.7:293
522 #, no-wrap
523 msgid "Questions and Answers"
524 msgstr "質問と解答"
525
526 #. type: TP
527 #: build/C/man7/epoll.7:294
528 #, no-wrap
529 msgid "B<Q0>"
530 msgstr "B<Q0>"
531
532 #. type: Plain text
533 #: build/C/man7/epoll.7:299
534 msgid ""
535 "What is the key used to distinguish the file descriptors registered in an "
536 "B<epoll> set?"
537 msgstr ""
538 "B<epoll> 集合内の登録されたファイルディスクリプタを区別するには、 何をキーと"
539 "して使えばよいか?"
540
541 #. type: TP
542 #: build/C/man7/epoll.7:299
543 #, no-wrap
544 msgid "B<A0>"
545 msgstr "B<A0>"
546
547 #. type: Plain text
548 #: build/C/man7/epoll.7:305
549 msgid ""
550 "The key is the combination of the file descriptor number and the open file "
551 "description (also known as an \"open file handle\", the kernel's internal "
552 "representation of an open file)."
553 msgstr ""
554 "キーはファイルディスクリプタ番号とオープンファイル記述 (open file "
555 "description) の組である (オープンファイル記述は \"open file handle\" とも 呼"
556 "ばれ、オープンされたファイルのカーネルの内部表現である)。"
557
558 #. type: TP
559 #: build/C/man7/epoll.7:305
560 #, no-wrap
561 msgid "B<Q1>"
562 msgstr "B<Q1>"
563
564 #. type: Plain text
565 #: build/C/man7/epoll.7:310
566 msgid ""
567 "What happens if you register the same file descriptor on an B<epoll> "
568 "instance twice?"
569 msgstr ""
570 "1 つの B<epoll> インスタンスに同じファイルディスクリプタを 2 回登録するとどう"
571 "なるか?"
572
573 #. type: TP
574 #: build/C/man7/epoll.7:310
575 #, no-wrap
576 msgid "B<A1>"
577 msgstr "B<A1>"
578
579 #.  But a descriptor duplicated by fork(2) can't be added to the
580 #.  set, because the [file *, fd] pair is already in the epoll set.
581 #.  That is a somewhat ugly inconsistency.  On the one hand, a child process
582 #.  cannot add the duplicate file descriptor to the epoll set.  (In every
583 #.  other case that I can think of, descriptors duplicated by fork have
584 #.  similar semantics to descriptors duplicated by dup() and friends.)  On
585 #.  the other hand, the very fact that the child has a duplicate of the
586 #.  descriptor means that even if the parent closes its descriptor, then
587 #.  epoll_wait() in the parent will continue to receive notifications for
588 #.  that descriptor because of the duplicated descriptor in the child.
589 #.  See http://thread.gmane.org/gmane.linux.kernel/596462/
590 #.  "epoll design problems with common fork/exec patterns"
591 #.  mtk, Feb 2008
592 #. type: Plain text
593 #: build/C/man7/epoll.7:341
594 msgid ""
595 "You will probably get B<EEXIST>.  However, it is possible to add a duplicate "
596 "(B<dup>(2), B<dup2>(2), B<fcntl>(2)  B<F_DUPFD>)  descriptor to the same "
597 "B<epoll> instance.  This can be a useful technique for filtering events, if "
598 "the duplicate file descriptors are registered with different I<events> masks."
599 msgstr ""
600 "たぶん B<EEXIST> を受け取るだろう。 しかしながら、同じ B<epoll> インスタンス"
601 "に対して複製されたディスクリプタを追加することは可能である (B<dup>(2), "
602 "B<dup2>(2), B<fcntl>(2)  B<F_DUPFD> など)。 複製したファイルディスクリプタを"
603 "異なる I<events> マスクで登録すれば、イベントをフィルタリングするのに この機"
604 "能は有用な手法である。"
605
606 #. type: TP
607 #: build/C/man7/epoll.7:341
608 #, no-wrap
609 msgid "B<Q2>"
610 msgstr "B<Q2>"
611
612 #. type: Plain text
613 #: build/C/man7/epoll.7:349
614 msgid ""
615 "Can two B<epoll> instances wait for the same file descriptor? If so, are "
616 "events reported to both B<epoll> file descriptors?"
617 msgstr ""
618 "2 つの B<epoll> インスタンスが同じファイルディスクリプタを待ち受けることは可"
619 "能か? もし可能であれば、イベントは両方の B<epoll> ファイルディスクリプタに報"
620 "告されるか?"
621
622 #. type: TP
623 #: build/C/man7/epoll.7:349
624 #, no-wrap
625 msgid "B<A2>"
626 msgstr "B<A2>"
627
628 #. type: Plain text
629 #: build/C/man7/epoll.7:353
630 msgid ""
631 "Yes, and events would be reported to both.  However, careful programming may "
632 "be needed to do this correctly."
633 msgstr ""
634 "イベントは両方に報告される。 しかしながら、これを正しく扱うには注意深くプログ"
635 "ラミングする必要が あるかもしれない。"
636
637 #. type: TP
638 #: build/C/man7/epoll.7:353
639 #, no-wrap
640 msgid "B<Q3>"
641 msgstr "B<Q3>"
642
643 #. type: Plain text
644 #: build/C/man7/epoll.7:358
645 msgid "Is the B<epoll> file descriptor itself poll/epoll/selectable?"
646 msgstr "B<epoll> ファイルディスクリプタ自身は poll/epoll/select が可能か?"
647
648 #. type: TP
649 #: build/C/man7/epoll.7:358
650 #, no-wrap
651 msgid "B<A3>"
652 msgstr "B<A3>"
653
654 #. type: Plain text
655 #: build/C/man7/epoll.7:365
656 msgid ""
657 "Yes.  If an B<epoll> file descriptor has events waiting then it will "
658 "indicate as being readable."
659 msgstr ""
660 "可能である。 B<epoll> ファイルディスクリプタに処理待ちのイベントがある場合"
661 "は、 読み出し可能だと通知されることだろう。"
662
663 #. type: TP
664 #: build/C/man7/epoll.7:365
665 #, no-wrap
666 msgid "B<Q4>"
667 msgstr "B<Q4>"
668
669 #. type: Plain text
670 #: build/C/man7/epoll.7:370
671 msgid ""
672 "What happens if one attempts to put an B<epoll> file descriptor into its own "
673 "file descriptor set?"
674 msgstr ""
675 "B<epoll> ファイルディスクリプタを自身のファイルディスクリプタ集合に 入れよう"
676 "とするとどうなるか?"
677
678 #. type: TP
679 #: build/C/man7/epoll.7:370
680 #, no-wrap
681 msgid "B<A4>"
682 msgstr "B<A4>"
683
684 #. type: Plain text
685 #: build/C/man7/epoll.7:381
686 msgid ""
687 "The B<epoll_ctl>(2)  call will fail (B<EINVAL>).  However, you can add an "
688 "B<epoll> file descriptor inside another B<epoll> file descriptor set."
689 msgstr ""
690 "B<epoll_ctl>(2)  の呼び出しは (B<EINVAL> で) 失敗するだろう。 ただし "
691 "B<epoll> ファイルディスクリプタを他の B<epoll> ファイルディスクリプタ集合の内"
692 "部に追加することは可能である。"
693
694 #. type: TP
695 #: build/C/man7/epoll.7:381
696 #, no-wrap
697 msgid "B<Q5>"
698 msgstr "B<Q5>"
699
700 #. type: Plain text
701 #: build/C/man7/epoll.7:386
702 msgid ""
703 "Can I send an B<epoll> file descriptor over a UNIX domain socket to another "
704 "process?"
705 msgstr ""
706 "B<epoll> ファイルディスクリプタを UNIX ドメインソケットで他のプロセスに送るこ"
707 "とは可能か?"
708
709 #. type: TP
710 #: build/C/man7/epoll.7:386
711 #, no-wrap
712 msgid "B<A5>"
713 msgstr "B<A5>"
714
715 #. type: Plain text
716 #: build/C/man7/epoll.7:392
717 msgid ""
718 "Yes, but it does not make sense to do this, since the receiving process "
719 "would not have copies of the file descriptors in the B<epoll> set."
720 msgstr ""
721 "可能だが、これをすることに意味はない。 なぜなら、受信側のプロセスが B<epoll> "
722 "集合内のファイルディスクリプタのコピーを持っていないからである。"
723
724 #. type: TP
725 #: build/C/man7/epoll.7:392
726 #, no-wrap
727 msgid "B<Q6>"
728 msgstr "B<Q6>"
729
730 #. type: Plain text
731 #: build/C/man7/epoll.7:397
732 msgid ""
733 "Will closing a file descriptor cause it to be removed from all B<epoll> sets "
734 "automatically?"
735 msgstr ""
736 "ファイルディスクリプタをクローズすると、そのファイルディスクリプタは全ての "
737 "B<epoll> 集合から自動的に削除されるか?"
738
739 #. type: TP
740 #: build/C/man7/epoll.7:397
741 #, no-wrap
742 msgid "B<A6>"
743 msgstr "B<A6>"
744
745 #. type: Plain text
746 #: build/C/man7/epoll.7:425
747 msgid ""
748 "Yes, but be aware of the following point.  A file descriptor is a reference "
749 "to an open file description (see B<open>(2)).  Whenever a descriptor is "
750 "duplicated via B<dup>(2), B<dup2>(2), B<fcntl>(2)  B<F_DUPFD>, or B<fork>"
751 "(2), a new file descriptor referring to the same open file description is "
752 "created.  An open file description continues to exist until all file "
753 "descriptors referring to it have been closed.  A file descriptor is removed "
754 "from an B<epoll> set only after all the file descriptors referring to the "
755 "underlying open file description have been closed (or before if the "
756 "descriptor is explicitly removed using B<epoll_ctl>(2)  B<EPOLL_CTL_DEL>).  "
757 "This means that even after a file descriptor that is part of an B<epoll> set "
758 "has been closed, events may be reported for that file descriptor if other "
759 "file descriptors referring to the same underlying file description remain "
760 "open."
761 msgstr ""
762 "削除されるが、以下の点に注意が必要である。 ファイルディスクリプタはオープン"
763 "ファイル記述 (B<open>(2)  参照) への参照である。 ディスクリプタの複製を "
764 "B<dup>(2), B<dup2>(2), B<fcntl>(2)  の B<F_DUPFD> や B<fork>(2)  経由で行う度"
765 "に、同じオープンファイル記述を参照する新規のファイル ディスクリプタが生成され"
766 "る。 オープンファイル記述自体は、自身を参照する全てのファイルディスクリプタ "
767 "がクローズされるまで存在し続ける。 ファイルディスクリプタが B<epoll> 集合から"
768 "削除されるのは、対応するオープンファイル記述を参照している 全てのファイルディ"
769 "スクリプタがクローズされた後である (B<epoll_ctl>(2)  B<EPOLL_CTL_DEL> を使っ"
770 "てそのディスクリプタを明示的に削除した場合にも削除される)。 このことは、 "
771 "B<epoll> 集合に属しているあるファイルディスクリプタをクローズした後であって"
772 "も、 同じファイル記述を参照する他のファイルディスクリプタがオープンされている"
773 "間は、 クローズしたファイルディスクリプタ宛にイベントが報告される可能性がある"
774 "と いうことを意味する。"
775
776 #. type: TP
777 #: build/C/man7/epoll.7:425
778 #, no-wrap
779 msgid "B<Q7>"
780 msgstr "B<Q7>"
781
782 #. type: Plain text
783 #: build/C/man7/epoll.7:430
784 msgid ""
785 "If more than one event occurs between B<epoll_wait>(2)  calls, are they "
786 "combined or reported separately?"
787 msgstr ""
788 "2 つ以上のイベントが B<epoll_wait>(2)  コールの間に発生した場合、それらはまと"
789 "めて報告されるか、 それとも別々に報告されるか?"
790
791 #. type: TP
792 #: build/C/man7/epoll.7:430
793 #, no-wrap
794 msgid "B<A7>"
795 msgstr "B<A7>"
796
797 #. type: Plain text
798 #: build/C/man7/epoll.7:433
799 msgid "They will be combined."
800 msgstr "まとめて報告されるだろう。"
801
802 #. type: TP
803 #: build/C/man7/epoll.7:433
804 #, no-wrap
805 msgid "B<Q8>"
806 msgstr "B<Q8>"
807
808 #. type: Plain text
809 #: build/C/man7/epoll.7:437
810 msgid ""
811 "Does an operation on a file descriptor affect the already collected but not "
812 "yet reported events?"
813 msgstr ""
814 "ファイルディスクリプタに対する操作は、 既に集められているがまだ報告されていな"
815 "いイベントに影響するか?"
816
817 #. type: TP
818 #: build/C/man7/epoll.7:437
819 #, no-wrap
820 msgid "B<A8>"
821 msgstr "B<A8>"
822
823 #. type: Plain text
824 #: build/C/man7/epoll.7:443
825 msgid ""
826 "You can do two operations on an existing file descriptor.  Remove would be "
827 "meaningless for this case.  Modify will reread available I/O."
828 msgstr ""
829 "既存のファイルディスクリプタに対して 2 つの操作を行うことができる。 この場"
830 "合、削除には意味がない。 変更すると、使用可能な I/O が再び読み込まれる。"
831
832 #. type: TP
833 #: build/C/man7/epoll.7:443
834 #, no-wrap
835 msgid "B<Q9>"
836 msgstr "B<Q9>"
837
838 #. type: Plain text
839 #: build/C/man7/epoll.7:451
840 msgid ""
841 "Do I need to continuously read/write a file descriptor until B<EAGAIN> when "
842 "using the B<EPOLLET> flag (edge-triggered behavior) ?"
843 msgstr ""
844 "B<EPOLLET> フラグ (エッジトリガ動作) を使っている場合、 B<EAGAIN> を受け取る"
845 "まで、 継続してファイルディスクリプタを読み書きする必要があるか?"
846
847 #. type: TP
848 #: build/C/man7/epoll.7:451
849 #, no-wrap
850 msgid "B<A9>"
851 msgstr "B<A9>"
852
853 #. type: Plain text
854 #: build/C/man7/epoll.7:461
855 msgid ""
856 "Receiving an event from B<epoll_wait>(2)  should suggest to you that such "
857 "file descriptor is ready for the requested I/O operation.  You must consider "
858 "it ready until the next (nonblocking)  read/write yields B<EAGAIN>.  When "
859 "and how you will use the file descriptor is entirely up to you."
860 msgstr ""
861 "B<epoll_wait>(2)  からイベントを受け取ることは、 そのファイルディスクリプタが"
862 "要求された I/O 操作に対して準備済みである、 ということをユーザに示すものであ"
863 "る。 次の (ブロックしない) read/write で B<EAGAIN> を受け取るまではファイル"
864 "ディスクリプタは準備済みであると 考えなければならない。 そのファイルディスク"
865 "リプタをいつどのように使うかは、 全くユーザに任されてる。"
866
867 #. type: Plain text
868 #: build/C/man7/epoll.7:467
869 msgid ""
870 "For packet/token-oriented files (e.g., datagram socket, terminal in "
871 "canonical mode), the only way to detect the end of the read/write I/O space "
872 "is to continue to read/write until B<EAGAIN>."
873 msgstr ""
874 "パケット指向やトークン指向のファイル (例えば、データグラムソケット、 "
875 "canonical モードの端末) では、 読み込み用 / 書き込み用の I/O 空間の末尾を検知"
876 "する唯一の方法は B<EAGAIN> になるまで read/write を行うことである。"
877
878 #. type: Plain text
879 #: build/C/man7/epoll.7:483
880 msgid ""
881 "For stream-oriented files (e.g., pipe, FIFO, stream socket), the condition "
882 "that the read/write I/O space is exhausted can also be detected by checking "
883 "the amount of data read from / written to the target file descriptor.  For "
884 "example, if you call B<read>(2)  by asking to read a certain amount of data "
885 "and B<read>(2)  returns a lower number of bytes, you can be sure of having "
886 "exhausted the read I/O space for the file descriptor.  The same is true when "
887 "writing using B<write>(2).  (Avoid this latter technique if you cannot "
888 "guarantee that the monitored file descriptor always refers to a stream-"
889 "oriented file.)"
890 msgstr ""
891 "ストリーム指向のファイル (例えば、パイプ、FIFO、ストリームソケット) では、 読"
892 "み込み用 / 書き込み用の I/O 空間が使い尽くされた状態は、 対象となるファイル"
893 "ディスクリプタから読み込んだデータ量または 書き込んだデータ量をチェックするこ"
894 "とでも検知できる。 例えば、ある特定の量のデータを読み込むために B<read>(2)  "
895 "を呼んだときに、 B<read>(2)  が返したバイト数がそれより少なかった場合、 その"
896 "ファイルディスクリプタの読み込み用 I/O 空間が 使い尽くされたことが分かる。 "
897 "B<write>(2)  を使って書き込みをするときも、同じことが言える (監視しているファ"
898 "イルディスクリプタが常にストリーム指向のファイルを 参照していることを保証でき"
899 "ない場合には、後者の手法の使用を避けること)。"
900
901 #. type: SS
902 #: build/C/man7/epoll.7:483
903 #, no-wrap
904 msgid "Possible Pitfalls and Ways to Avoid Them"
905 msgstr "ありがちな落とし穴と回避方法"
906
907 #. type: TP
908 #: build/C/man7/epoll.7:484
909 #, no-wrap
910 msgid "B<o Starvation (edge-triggered)>"
911 msgstr "B<o 飢餓 (starvation) (エッジトリガ)>"
912
913 #. type: Plain text
914 #: build/C/man7/epoll.7:492
915 msgid ""
916 "If there is a large amount of I/O space, it is possible that by trying to "
917 "drain it the other files will not get processed causing starvation.  (This "
918 "problem is not specific to B<epoll>.)"
919 msgstr ""
920 "大きな I/O 空間がある場合、 その I/O 空間のデータを全て処理 (drain) しようと"
921 "すると、 他のファイルが処理されず、飢餓を発生させることがある (この問題は "
922 "B<epoll> に固有のものではない)。"
923
924 #. type: Plain text
925 #: build/C/man7/epoll.7:500
926 msgid ""
927 "The solution is to maintain a ready list and mark the file descriptor as "
928 "ready in its associated data structure, thereby allowing the application to "
929 "remember which files need to be processed but still round robin amongst all "
930 "the ready files.  This also supports ignoring subsequent events you receive "
931 "for file descriptors that are already ready."
932 msgstr ""
933 "この問題の解決法は、準備済み状態のリストを管理して、 関連する data 構造体の中"
934 "でファイルディスクリプタが 利用可能であるとマークすることである。 それによっ"
935 "て、利用可能なすべてのファイルの中で どのファイルを処理する必要があるかを憶え"
936 "ることができ、 しかも順番に処理 (round robin) することができる。 既に利用可能"
937 "であるファイルディスクリプタに対して それ以後に受け取るイベントを無視すること"
938 "もできる。"
939
940 #. type: TP
941 #: build/C/man7/epoll.7:500
942 #, no-wrap
943 msgid "B<o If using an event cache...>"
944 msgstr "B<o イベントキャッシュを使っている場合>"
945
946 #. type: Plain text
947 #: build/C/man7/epoll.7:516
948 msgid ""
949 "If you use an event cache or store all the file descriptors returned from "
950 "B<epoll_wait>(2), then make sure to provide a way to mark its closure "
951 "dynamically (i.e., caused by a previous event's processing).  Suppose you "
952 "receive 100 events from B<epoll_wait>(2), and in event #47 a condition "
953 "causes event #13 to be closed.  If you remove the structure and B<close>(2)  "
954 "the file descriptor for event #13, then your event cache might still say "
955 "there are events waiting for that file descriptor causing confusion."
956 msgstr ""
957 "イベントキャッシュを使っている場合、 または B<epoll_wait>(2)  から返された全"
958 "てのファイルディスクリプタを格納している場合、 クローズされたことを動的にマー"
959 "クする (つまり前のイベントの処理によってマークされる) 方法を提供すべきであ"
960 "る。 B<epoll_wait>(2)  から 100 個のイベントを受け取り、 イベント #47 ではあ"
961 "る条件でイベント #13 が閉じられると仮定する。 イベント #13 の構造体を削除し"
962 "ファイルディスクリプタを B<close>(2)  すると、イベントキャッシュはそのファイ"
963 "ルディスクリプタを待つイベントが 存在するといって、混乱が起きる。"
964
965 #. type: Plain text
966 #: build/C/man7/epoll.7:527
967 msgid ""
968 "One solution for this is to call, during the processing of event 47, "
969 "B<epoll_ctl>(B<EPOLL_CTL_DEL>)  to delete file descriptor 13 and B<close>"
970 "(2), then mark its associated data structure as removed and link it to a "
971 "cleanup list.  If you find another event for file descriptor 13 in your "
972 "batch processing, you will discover the file descriptor had been previously "
973 "removed and there will be no confusion."
974 msgstr ""
975 "この問題を解決する 1 つの方法は、イベント 47 の処理をしている間に、 ファイル"
976 "ディスクリプタ 13 を削除して B<close>(2)  するために B<epoll_ctl>"
977 "(B<EPOLL_CTL_DEL>)  を呼び出し、関連付けられた data 構造体を削除済みとマーク"
978 "して、 クリーンアップリストにリンクすることである。 バッチ処理の中でファイル"
979 "ディスクリプタ 13 についての 他のイベントを見つけた場合、 そのファイルディス"
980 "クリプタが以前に削除されたものであると分かるので、 混乱は起きない。"
981
982 #. type: SH
983 #: build/C/man7/epoll.7:527 build/C/man2/epoll_create.2:114
984 #: build/C/man2/epoll_ctl.2:224 build/C/man2/epoll_wait.2:174
985 #: build/C/man2/poll.2:286
986 #, no-wrap
987 msgid "VERSIONS"
988 msgstr "バージョン"
989
990 #.  Its interface should be finalized in Linux kernel 2.5.66.
991 #. type: Plain text
992 #: build/C/man7/epoll.7:533
993 msgid ""
994 "The B<epoll> API was introduced in Linux kernel 2.5.44.  Support was added "
995 "to glibc in version 2.3.2."
996 msgstr ""
997 "B<epoll> API は Linux カーネル 2.5.44 に導入された。 glibc でのサポートはバー"
998 "ジョン 2.3.2 で追加された。"
999
1000 #. type: SH
1001 #: build/C/man7/epoll.7:533 build/C/man2/epoll_create.2:124
1002 #: build/C/man2/epoll_ctl.2:229 build/C/man2/epoll_wait.2:184
1003 #: build/C/man2/poll.2:306
1004 #, no-wrap
1005 msgid "CONFORMING TO"
1006 msgstr "準拠"
1007
1008 #. type: Plain text
1009 #: build/C/man7/epoll.7:542
1010 msgid ""
1011 "The B<epoll> API is Linux-specific.  Some other systems provide similar "
1012 "mechanisms, for example, FreeBSD has I<kqueue>, and Solaris has I</dev/poll>."
1013 msgstr ""
1014 "B<epoll> API は Linux 固有である。 他のシステムでも同様の機構が提供されている"
1015 "場合がある。 例えば、FreeBSD の I<kqueue> や Solaris の I</dev/poll> などであ"
1016 "る。"
1017
1018 #. type: SH
1019 #: build/C/man7/epoll.7:542 build/C/man2/epoll_create.2:133
1020 #: build/C/man2/epoll_ctl.2:252 build/C/man2/epoll_wait.2:187
1021 #: build/C/man2/poll.2:338
1022 #, no-wrap
1023 msgid "SEE ALSO"
1024 msgstr "関連項目"
1025
1026 #. type: Plain text
1027 #: build/C/man7/epoll.7:547
1028 msgid ""
1029 "B<epoll_create>(2), B<epoll_create1>(2), B<epoll_ctl>(2), B<epoll_wait>(2)"
1030 msgstr ""
1031 "B<epoll_create>(2), B<epoll_create1>(2), B<epoll_ctl>(2), B<epoll_wait>(2)"
1032
1033 #. type: SH
1034 #: build/C/man7/epoll.7:547 build/C/man2/epoll_create.2:138
1035 #: build/C/man2/epoll_ctl.2:257 build/C/man2/epoll_wait.2:191
1036 #: build/C/man2/poll.2:342
1037 #, no-wrap
1038 msgid "COLOPHON"
1039 msgstr ""
1040
1041 #. type: Plain text
1042 #: build/C/man7/epoll.7:554 build/C/man2/epoll_create.2:145
1043 #: build/C/man2/epoll_ctl.2:264 build/C/man2/epoll_wait.2:198
1044 #: build/C/man2/poll.2:349
1045 msgid ""
1046 "This page is part of release 3.37 of the Linux I<man-pages> project.  A "
1047 "description of the project, and information about reporting bugs, can be "
1048 "found at http://www.kernel.org/doc/man-pages/."
1049 msgstr ""
1050
1051 #. type: TH
1052 #: build/C/man2/epoll_create.2:25
1053 #, no-wrap
1054 msgid "EPOLL_CREATE"
1055 msgstr "EPOLL_CREATE"
1056
1057 #. type: TH
1058 #: build/C/man2/epoll_create.2:25 build/C/man2/epoll_ctl.2:21
1059 #: build/C/man2/epoll_wait.2:23
1060 #, fuzzy, no-wrap
1061 #| msgid "2010-09-20"
1062 msgid "2010-12-03"
1063 msgstr "2010-09-20"
1064
1065 #. type: Plain text
1066 #: build/C/man2/epoll_create.2:28
1067 msgid "epoll_create, epoll_create1 - open an epoll file descriptor"
1068 msgstr ""
1069 "epoll_create, epoll_create1 - epoll ファイルディスクリプタをオープンする"
1070
1071 #. type: Plain text
1072 #: build/C/man2/epoll_create.2:31 build/C/man2/epoll_wait.2:29
1073 #, no-wrap
1074 msgid "B<#include E<lt>sys/epoll.hE<gt>>\n"
1075 msgstr "B<#include E<lt>sys/epoll.hE<gt>>\n"
1076
1077 #. type: Plain text
1078 #: build/C/man2/epoll_create.2:34
1079 #, no-wrap
1080 msgid ""
1081 "B<int epoll_create(int >I<size>B<);>\n"
1082 "B<int epoll_create1(int >I<flags>B<);>\n"
1083 msgstr ""
1084 "B<int epoll_create(int >I<size>B<);>\n"
1085 "B<int epoll_create1(int >I<flags>B<);>\n"
1086
1087 #. type: Plain text
1088 #: build/C/man2/epoll_create.2:48
1089 #, fuzzy
1090 #| msgid ""
1091 #| "B<epoll_create>()  creates an epoll \"instance\", requesting the kernel "
1092 #| "to allocate an event backing store dimensioned for I<size> descriptors.  "
1093 #| "The I<size> is not the maximum size of the backing store but just a hint "
1094 #| "to the kernel about how to dimension internal structures.  (Nowadays, "
1095 #| "I<size> is ignored; see NOTES below.)"
1096 msgid ""
1097 "B<epoll_create>()  creates an epoll \"instance\", requesting the kernel to "
1098 "allocate an event backing store dimensioned for I<size> descriptors.  The "
1099 "I<size> is not the maximum size of the backing store but just a hint to the "
1100 "kernel about how to dimension internal structures.  (Nowadays, I<size> is "
1101 "unused; see NOTES below.)"
1102 msgstr ""
1103 "B<epoll_create>()  は、 I<size> 個のディスクリプタを保持できる大きさのイベン"
1104 "トバッキング ストアの割り当てをカーネルに対して要求することにより、 epoll "
1105 "「インスタンス」を作成する。 I<size> はバッキングストアの最大サイズではな"
1106 "く、 内部構造の大きさをどの位にするかをカーネルに知らせるヒントでしかない。 "
1107 "(現在は I<size> は無視される。下記の「注意」を参照。)"
1108
1109 #. type: Plain text
1110 #: build/C/man2/epoll_create.2:61
1111 msgid ""
1112 "B<epoll_create>()  returns a file descriptor referring to the new epoll "
1113 "instance.  This file descriptor is used for all the subsequent calls to the "
1114 "B<epoll> interface.  When no longer required, the file descriptor returned "
1115 "by B<epoll_create>()  should be closed by using B<close>(2).  When all file "
1116 "descriptors referring to an epoll instance have been closed, the kernel "
1117 "destroys the instance and releases the associated resources for reuse."
1118 msgstr ""
1119 "B<epoll_create>()  は、新しい epoll インスタンスを参照するファイルディスクリ"
1120 "プタを返す。 このファイルディスクリプタは、その後の B<epoll> インタフェースの"
1121 "呼び出しに使われる。 もう必要でなくなった場合は、 B<epoll_create>()  で返され"
1122 "たファイルディスクリプタは B<close>(2)  を使ってクローズされるべきである。 あ"
1123 "る epoll インスタンスを参照する全てのファイルディスクリプタがクローズされる"
1124 "と、 カーネルはそのインスタンスを破壊して、対応するリソースを解放し、 再使用"
1125 "できるようにする。"
1126
1127 #. type: Plain text
1128 #: build/C/man2/epoll_create.2:73
1129 msgid ""
1130 "If I<flags> is 0, then, other than the fact that the obsolete I<size> "
1131 "argument is dropped, B<epoll_create1>()  is the same as B<epoll_create>().  "
1132 "The following value can be included in I<flags> to obtain different behavior:"
1133 msgstr ""
1134 "B<epoll_create1>()  は、 I<flags> が 0 の場合、現在では使われていない "
1135 "I<size> 引き数がなくなっている点を除けば B<epoll_create>()  と同じである。 "
1136 "I<flags> に以下の値をビット毎の論理和 (OR) で指定することで、 異なる動作をさ"
1137 "せることができる。"
1138
1139 #. type: TP
1140 #: build/C/man2/epoll_create.2:73
1141 #, no-wrap
1142 msgid "B<EPOLL_CLOEXEC>"
1143 msgstr "B<EPOLL_CLOEXEC>"
1144
1145 #. type: Plain text
1146 #: build/C/man2/epoll_create.2:83
1147 msgid ""
1148 "Set the close-on-exec (B<FD_CLOEXEC>)  flag on the new file descriptor.  See "
1149 "the description of the B<O_CLOEXEC> flag in B<open>(2)  for reasons why this "
1150 "may be useful."
1151 msgstr ""
1152 "新しいファイルディスクリプタに対して close-on-exec (B<FD_CLOEXEC>)  フラグを"
1153 "セットする。 このフラグが役に立つ理由については、 B<open>(2)  の "
1154 "B<O_CLOEXEC> フラグの説明を参照のこと。"
1155
1156 #. type: SH
1157 #: build/C/man2/epoll_create.2:83 build/C/man2/epoll_ctl.2:156
1158 #: build/C/man2/epoll_wait.2:137 build/C/man2/poll.2:257
1159 #, no-wrap
1160 msgid "RETURN VALUE"
1161 msgstr "返り値"
1162
1163 #. type: Plain text
1164 #: build/C/man2/epoll_create.2:90
1165 msgid ""
1166 "On success, these system calls return a nonnegative file descriptor.  On "
1167 "error, -1 is returned, and I<errno> is set to indicate the error."
1168 msgstr ""
1169 "成功すると、これらのシステムコールは 非負のファイルディスクリプタを返す。 エ"
1170 "ラーの場合、-1 を返し、 I<errno> にエラーを示す値を設定する。"
1171
1172 #. type: SH
1173 #: build/C/man2/epoll_create.2:90 build/C/man2/epoll_ctl.2:165
1174 #: build/C/man2/epoll_wait.2:149 build/C/man2/poll.2:267
1175 #, no-wrap
1176 msgid "ERRORS"
1177 msgstr "エラー"
1178
1179 #. type: TP
1180 #: build/C/man2/epoll_create.2:91 build/C/man2/epoll_create.2:95
1181 #: build/C/man2/epoll_ctl.2:180 build/C/man2/epoll_wait.2:166
1182 #: build/C/man2/poll.2:276
1183 #, no-wrap
1184 msgid "B<EINVAL>"
1185 msgstr "B<EINVAL>"
1186
1187 #. type: Plain text
1188 #: build/C/man2/epoll_create.2:95
1189 msgid "I<size> is not positive."
1190 msgstr "I<size> が正でない。"
1191
1192 #. type: Plain text
1193 #: build/C/man2/epoll_create.2:100
1194 msgid "(B<epoll_create1>())  Invalid value specified in I<flags>."
1195 msgstr "(B<epoll_create1>())  I<flags> に無効な値が指定された。"
1196
1197 #. type: TP
1198 #: build/C/man2/epoll_create.2:100
1199 #, no-wrap
1200 msgid "B<EMFILE>"
1201 msgstr "B<EMFILE>"
1202
1203 #. type: Plain text
1204 #: build/C/man2/epoll_create.2:108
1205 msgid ""
1206 "The per-user limit on the number of epoll instances imposed by I</proc/sys/"
1207 "fs/epoll/max_user_instances> was encountered.  See B<epoll>(7)  for further "
1208 "details."
1209 msgstr ""
1210 "I</proc/sys/fs/epoll/max_user_instances> によって指定されている、epoll インス"
1211 "タンスのユーザー単位の制限に達した。 更なる詳細については B<epoll>(7)  を参照"
1212 "のこと。"
1213
1214 #. type: TP
1215 #: build/C/man2/epoll_create.2:108
1216 #, no-wrap
1217 msgid "B<ENFILE>"
1218 msgstr "B<ENFILE>"
1219
1220 #. type: Plain text
1221 #: build/C/man2/epoll_create.2:111
1222 msgid "The system limit on the total number of open files has been reached."
1223 msgstr "オープンされたファイルの総数がシステム制限に達した。"
1224
1225 #. type: TP
1226 #: build/C/man2/epoll_create.2:111 build/C/man2/epoll_ctl.2:203
1227 #: build/C/man2/poll.2:283
1228 #, no-wrap
1229 msgid "B<ENOMEM>"
1230 msgstr "B<ENOMEM>"
1231
1232 #. type: Plain text
1233 #: build/C/man2/epoll_create.2:114
1234 msgid "There was insufficient memory to create the kernel object."
1235 msgstr "カーネルオブジェクトを作成するのに十分なメモリがなかった。"
1236
1237 #. type: Plain text
1238 #: build/C/man2/epoll_create.2:118
1239 #, fuzzy
1240 #| msgid ""
1241 #| "The B<epoll> API was introduced in Linux kernel 2.5.44.  Support was "
1242 #| "added to glibc in version 2.3.2."
1243 msgid ""
1244 "B<epoll_create>()  was added to the kernel in version 2.6.  Library support "
1245 "is provided in glibc starting with version 2.3.2."
1246 msgstr ""
1247 "B<epoll> API は Linux カーネル 2.5.44 に導入された。 glibc でのサポートはバー"
1248 "ジョン 2.3.2 で追加された。"
1249
1250 #.  To be precise: kernel 2.5.44.
1251 #.  The interface should be finalized by Linux kernel 2.5.66.
1252 #. type: Plain text
1253 #: build/C/man2/epoll_create.2:124
1254 msgid ""
1255 "B<epoll_create1>()  was added to the kernel in version 2.6.27.  Library "
1256 "support is provided in glibc starting with version 2.9."
1257 msgstr ""
1258
1259 #. type: Plain text
1260 #: build/C/man2/epoll_create.2:127
1261 #, fuzzy
1262 #| msgid ""
1263 #| "B<epoll_create>()  is Linux-specific, and was introduced in kernel 2.5.44."
1264 msgid "B<epoll_create>()  is Linux-specific."
1265 msgstr "B<epoll_create>()  は Linux 独自であり、カーネル 2.5.44 で導入された。"
1266
1267 #. type: SH
1268 #: build/C/man2/epoll_create.2:127 build/C/man2/epoll_ctl.2:233
1269 #: build/C/man2/poll.2:312
1270 #, no-wrap
1271 msgid "NOTES"
1272 msgstr "注意"
1273
1274 #. type: Plain text
1275 #: build/C/man2/epoll_create.2:133
1276 #, fuzzy
1277 #| msgid ""
1278 #| "Since Linux 2.6.8, the I<size> argument is unused.  (The kernel "
1279 #| "dynamically sizes the required data structures without needing this "
1280 #| "initial hint.)"
1281 msgid ""
1282 "Since Linux 2.6.8, the I<size> argument is unused, but must be greater than "
1283 "zero.  (The kernel dynamically sizes the required data structures without "
1284 "needing this initial hint.)"
1285 msgstr ""
1286 "Linux 2.6.8 以降では、 I<size> 引き数は使用されない (カーネルは、動的に必要な"
1287 "データ構造の大きさを決定し、 最初のヒントを必要しない)。"
1288
1289 #. type: Plain text
1290 #: build/C/man2/epoll_create.2:138
1291 msgid "B<close>(2), B<epoll_ctl>(2), B<epoll_wait>(2), B<epoll>(7)"
1292 msgstr "B<close>(2), B<epoll_ctl>(2), B<epoll_wait>(2), B<epoll>(7)"
1293
1294 #. type: TH
1295 #: build/C/man2/epoll_ctl.2:21
1296 #, no-wrap
1297 msgid "EPOLL_CTL"
1298 msgstr "EPOLL_CTL"
1299
1300 #. type: Plain text
1301 #: build/C/man2/epoll_ctl.2:24
1302 msgid "epoll_ctl - control interface for an epoll descriptor"
1303 msgstr "epoll_ctl - epoll ディスクリプタのインタフェースを操作する"
1304
1305 #. type: Plain text
1306 #: build/C/man2/epoll_ctl.2:29
1307 msgid ""
1308 "B<int epoll_ctl(int >I<epfd>B<, int >I<op>B<, int >I<fd>B<, struct "
1309 "epoll_event *>I<event>B<);>"
1310 msgstr ""
1311 "B<int epoll_ctl(int >I<epfd>B<, int >I<op>B<, int >I<fd>B<, struct "
1312 "epoll_event *>I<event>B<);>"
1313
1314 #. type: Plain text
1315 #: build/C/man2/epoll_ctl.2:37
1316 msgid ""
1317 "This system call performs control operations on the epoll instance referred "
1318 "to by the file descriptor I<epfd>.  It requests that the operation I<op> be "
1319 "performed for the target file descriptor, I<fd>."
1320 msgstr ""
1321 "このシステムコールは、ファイルディスクリプタ I<epfd> が参照する epoll インス"
1322 "タンスに対する操作を行う。 対象のファイルディスクリプタ I<fd> に対して、操作 "
1323 "I<op> の実行が要求される。"
1324
1325 #. type: Plain text
1326 #: build/C/man2/epoll_ctl.2:41
1327 msgid "Valid values for the I<op> argument are :"
1328 msgstr "I<op> 引き数に指定できる有効な値は以下の通りである。"
1329
1330 #. type: TP
1331 #: build/C/man2/epoll_ctl.2:41
1332 #, no-wrap
1333 msgid "B<EPOLL_CTL_ADD>"
1334 msgstr "B<EPOLL_CTL_ADD>"
1335
1336 #. type: Plain text
1337 #: build/C/man2/epoll_ctl.2:53
1338 msgid ""
1339 "Register the target file descriptor I<fd> on the B<epoll> instance referred "
1340 "to by the file descriptor I<epfd> and associate the event I<event> with the "
1341 "internal file linked to I<fd>."
1342 msgstr ""
1343 "対象のファイルディスクリプタ I<fd> をファイルディスクリプタ I<epfd> が参照す"
1344 "る B<epoll> インスタンスに登録し、イベント I<event> を I<fd> に結び付けられた"
1345 "内部ファイルに関連付ける。"
1346
1347 #. type: TP
1348 #: build/C/man2/epoll_ctl.2:53
1349 #, no-wrap
1350 msgid "B<EPOLL_CTL_MOD>"
1351 msgstr "B<EPOLL_CTL_MOD>"
1352
1353 #. type: Plain text
1354 #: build/C/man2/epoll_ctl.2:59
1355 msgid ""
1356 "Change the event I<event> associated with the target file descriptor I<fd>."
1357 msgstr ""
1358 "イベント I<event> を対象のファイルディスクリプタ I<fd> に関連付けるように変更"
1359 "する。"
1360
1361 #. type: TP
1362 #: build/C/man2/epoll_ctl.2:59
1363 #, no-wrap
1364 msgid "B<EPOLL_CTL_DEL>"
1365 msgstr "B<EPOLL_CTL_DEL>"
1366
1367 #. type: Plain text
1368 #: build/C/man2/epoll_ctl.2:70
1369 msgid ""
1370 "Remove (deregister) the target file descriptor I<fd> from the B<epoll> "
1371 "instance referred to by I<epfd>.  The I<event> is ignored and can be NULL "
1372 "(but see BUGS below)."
1373 msgstr ""
1374 "対象のファイルディスクリプタ I<fd> を I<epfd> が参照する B<epoll> インスタン"
1375 "スから削除する。 I<event> 引き数は無視されるので、NULL にすることもできる (但"
1376 "し、下記の「バグ」を参照)。"
1377
1378 #. type: Plain text
1379 #: build/C/man2/epoll_ctl.2:78
1380 msgid ""
1381 "The I<event> argument describes the object linked to the file descriptor "
1382 "I<fd>.  The I<struct epoll_event> is defined as :"
1383 msgstr ""
1384 "I<event> 引き数は、ファイルディスクリプタ I<fd> にリンクされたオブジェクトを"
1385 "表す。 I<struct epoll_event> は以下のように定義される:"
1386
1387 #. type: Plain text
1388 #: build/C/man2/epoll_ctl.2:87
1389 #, no-wrap
1390 msgid ""
1391 "typedef union epoll_data {\n"
1392 "    void        *ptr;\n"
1393 "    int          fd;\n"
1394 "    uint32_t     u32;\n"
1395 "    uint64_t     u64;\n"
1396 "} epoll_data_t;\n"
1397 msgstr ""
1398 "typedef union epoll_data {\n"
1399 "    void        *ptr;\n"
1400 "    int          fd;\n"
1401 "    uint32_t     u32;\n"
1402 "    uint64_t     u64;\n"
1403 "} epoll_data_t;\n"
1404
1405 #. type: Plain text
1406 #: build/C/man2/epoll_ctl.2:92
1407 #, no-wrap
1408 msgid ""
1409 "struct epoll_event {\n"
1410 "    uint32_t     events;      /* Epoll events */\n"
1411 "    epoll_data_t data;        /* User data variable */\n"
1412 "};\n"
1413 msgstr ""
1414 "struct epoll_event {\n"
1415 "    uint32_t     events;      /* epoll イベント */\n"
1416 "    epoll_data_t data;        /* ユーザデータ変数 */\n"
1417 "};\n"
1418
1419 #. type: Plain text
1420 #: build/C/man2/epoll_ctl.2:99
1421 msgid ""
1422 "The I<events> member is a bit set composed using the following available "
1423 "event types:"
1424 msgstr ""
1425 "I<events> メンバは、以下のような使用可能なイベントタイプを使って構成された "
1426 "ビットセットである。"
1427
1428 #. type: TP
1429 #: build/C/man2/epoll_ctl.2:99
1430 #, no-wrap
1431 msgid "B<EPOLLIN>"
1432 msgstr "B<EPOLLIN>"
1433
1434 #. type: Plain text
1435 #: build/C/man2/epoll_ctl.2:104
1436 msgid "The associated file is available for B<read>(2)  operations."
1437 msgstr "関連付けられたファイルに対して、 B<read>(2)  操作が可能である。"
1438
1439 #. type: TP
1440 #: build/C/man2/epoll_ctl.2:104
1441 #, no-wrap
1442 msgid "B<EPOLLOUT>"
1443 msgstr "B<EPOLLOUT>"
1444
1445 #. type: Plain text
1446 #: build/C/man2/epoll_ctl.2:109
1447 msgid "The associated file is available for B<write>(2)  operations."
1448 msgstr "関連付けられたファイルに対して、 B<write>(2)  操作が可能である。"
1449
1450 #. type: TP
1451 #: build/C/man2/epoll_ctl.2:109
1452 #, no-wrap
1453 msgid "B<EPOLLRDHUP> (since Linux 2.6.17)"
1454 msgstr "B<EPOLLRDHUP\">(LinuxB<2.6.17>以降)\""
1455
1456 #. type: Plain text
1457 #: build/C/man2/epoll_ctl.2:115
1458 msgid ""
1459 "Stream socket peer closed connection, or shut down writing half of "
1460 "connection.  (This flag is especially useful for writing simple code to "
1461 "detect peer shutdown when using Edge Triggered monitoring.)"
1462 msgstr ""
1463 "ストリームソケットの他端が、コネクションの close 、 またはコネクションの書き"
1464 "込み側の shutdown を行った。 (このフラグを使うと、エッジトリガの監視を行う場"
1465 "合に、 通信のもう一端が閉じられたことを検知するコードを 非常に簡潔に書くこと"
1466 "ができる。)"
1467
1468 #. type: TP
1469 #: build/C/man2/epoll_ctl.2:115
1470 #, no-wrap
1471 msgid "B<EPOLLPRI>"
1472 msgstr "B<EPOLLPRI>"
1473
1474 #. type: Plain text
1475 #: build/C/man2/epoll_ctl.2:120
1476 msgid "There is urgent data available for B<read>(2)  operations."
1477 msgstr "B<read>(2)  操作が可能な緊急 (urgent) データがある。"
1478
1479 #. type: TP
1480 #: build/C/man2/epoll_ctl.2:120
1481 #, no-wrap
1482 msgid "B<EPOLLERR>"
1483 msgstr "B<EPOLLERR>"
1484
1485 #. type: Plain text
1486 #: build/C/man2/epoll_ctl.2:126
1487 msgid ""
1488 "Error condition happened on the associated file descriptor.  B<epoll_wait>"
1489 "(2)  will always wait for this event; it is not necessary to set it in "
1490 "I<events>."
1491 msgstr ""
1492 "関連付けられたファイルディスクリプタにエラー条件が起こった。 B<epoll_wait>"
1493 "(2)  は常にこのイベントを待つので、 I<events> に設定する必要はない。"
1494
1495 #. type: TP
1496 #: build/C/man2/epoll_ctl.2:126
1497 #, no-wrap
1498 msgid "B<EPOLLHUP>"
1499 msgstr "B<EPOLLHUP>"
1500
1501 #. type: Plain text
1502 #: build/C/man2/epoll_ctl.2:132
1503 msgid ""
1504 "Hang up happened on the associated file descriptor.  B<epoll_wait>(2)  will "
1505 "always wait for this event; it is not necessary to set it in I<events>."
1506 msgstr ""
1507 "関連付けられたファイルディスクリプタにハングアップが起こった。 B<epoll_wait>"
1508 "(2)  は常にこのイベントを待つので、 I<events> に設定する必要はない。"
1509
1510 #. type: TP
1511 #: build/C/man2/epoll_ctl.2:132
1512 #, no-wrap
1513 msgid "B<EPOLLET>"
1514 msgstr "B<EPOLLET>"
1515
1516 #. type: Plain text
1517 #: build/C/man2/epoll_ctl.2:142
1518 msgid ""
1519 "Sets the Edge Triggered behavior for the associated file descriptor.  The "
1520 "default behavior for B<epoll> is Level Triggered.  See B<epoll>(7)  for more "
1521 "detailed information about Edge and Level Triggered event distribution "
1522 "architectures."
1523 msgstr ""
1524 "関連付けられたファイルディスクリプタに エッジトリガ動作 (Edge Triggered "
1525 "behavior) を設定する。 B<epoll> のデフォルトの動作は、レベルトリガ (Level "
1526 "Triggered) である。 エッジトリガとレベルトリガによるイベント分配機構 (event "
1527 "distribution architectures) についての詳細な情報は、 B<epoll>(7)  を参照する"
1528 "こと。"
1529
1530 #. type: TP
1531 #: build/C/man2/epoll_ctl.2:142
1532 #, no-wrap
1533 msgid "B<EPOLLONESHOT> (since Linux 2.6.2)"
1534 msgstr "B<EPOLLONESHOT> (Linux 2.6.2 以降)"
1535
1536 #. type: Plain text
1537 #: build/C/man2/epoll_ctl.2:156
1538 msgid ""
1539 "Sets the one-shot behavior for the associated file descriptor.  This means "
1540 "that after an event is pulled out with B<epoll_wait>(2)  the associated file "
1541 "descriptor is internally disabled and no other events will be reported by "
1542 "the B<epoll> interface.  The user must call B<epoll_ctl>()  with "
1543 "B<EPOLL_CTL_MOD> to rearm the file descriptor with a new event mask."
1544 msgstr ""
1545 "関連付けられたファイルディスクリプタに 一撃動作 (One-Shot behavior) を設定す"
1546 "る。 これはイベントが B<epoll_wait>(2)  によって引き出された後、 関連付けられ"
1547 "たファイルディスクリプタが内部的に破棄され、 B<epoll> インタフェースによって"
1548 "イベントが報告されなくなることを意味する。 新しいイベントマスクでファイルディ"
1549 "スクリプタを再度有効にするためには、 B<epoll_ctl>()  に B<EPOLL_CTL_MOD> を指"
1550 "定して呼び出さなければならない。 I<op> 引き数に指定できる有効な値は、以下の通"
1551 "り:"
1552
1553 #. type: Plain text
1554 #: build/C/man2/epoll_ctl.2:165
1555 msgid ""
1556 "When successful, B<epoll_ctl>()  returns zero.  When an error occurs, "
1557 "B<epoll_ctl>()  returns -1 and I<errno> is set appropriately."
1558 msgstr ""
1559 "成功した場合、 B<epoll_ctl>()  は 0 を返す。 エラーが起こった場合、 "
1560 "B<epoll_ctl>()  は -1 を返し、 I<errno> を適切に設定する。"
1561
1562 #. type: TP
1563 #: build/C/man2/epoll_ctl.2:166 build/C/man2/epoll_wait.2:150
1564 #, no-wrap
1565 msgid "B<EBADF>"
1566 msgstr "B<EBADF>"
1567
1568 #. type: Plain text
1569 #: build/C/man2/epoll_ctl.2:172
1570 msgid "I<epfd> or I<fd> is not a valid file descriptor."
1571 msgstr "I<epfd> か I<fd> が有効なファイルディスクリプタでない。"
1572
1573 #. type: TP
1574 #: build/C/man2/epoll_ctl.2:172
1575 #, no-wrap
1576 msgid "B<EEXIST>"
1577 msgstr "B<EEXIST>"
1578
1579 #. type: Plain text
1580 #: build/C/man2/epoll_ctl.2:180
1581 msgid ""
1582 "I<op> was B<EPOLL_CTL_ADD>, and the supplied file descriptor I<fd> is "
1583 "already registered with this epoll instance."
1584 msgstr ""
1585 "I<op> が B<EPOLL_CTL_ADD> であり、かつ与えられたファイルディスクリプタ I<fd> "
1586 "がこの epoll インスタンスに既に登録されている。"
1587
1588 #. type: Plain text
1589 #: build/C/man2/epoll_ctl.2:193
1590 msgid ""
1591 "I<epfd> is not an B<epoll> file descriptor, or I<fd> is the same as I<epfd>, "
1592 "or the requested operation I<op> is not supported by this interface."
1593 msgstr ""
1594 "I<epfd> が B<epoll> ファイルディスクリプタでない。 または I<fd> が I<epfd> と"
1595 "同一である。 または要求された操作 I<op> がこのインタフェースでサポートされて"
1596 "いない。"
1597
1598 #. type: TP
1599 #: build/C/man2/epoll_ctl.2:193
1600 #, no-wrap
1601 msgid "B<ENOENT>"
1602 msgstr "B<ENOENT>"
1603
1604 #. type: Plain text
1605 #: build/C/man2/epoll_ctl.2:203
1606 msgid ""
1607 "I<op> was B<EPOLL_CTL_MOD> or B<EPOLL_CTL_DEL>, and I<fd> is not registered "
1608 "with this epoll instance."
1609 msgstr ""
1610 "I<op> が B<EPOLL_CTL_MOD> または B<EPOLL_CTL_DEL> で、かつ I<fd> がこの "
1611 "epoll インスタンスに登録されていない。"
1612
1613 #. type: Plain text
1614 #: build/C/man2/epoll_ctl.2:208
1615 msgid ""
1616 "There was insufficient memory to handle the requested I<op> control "
1617 "operation."
1618 msgstr "要求された I<op> 制御操作を扱うのに十分なメモリがない。"
1619
1620 #. type: TP
1621 #: build/C/man2/epoll_ctl.2:208
1622 #, no-wrap
1623 msgid "B<ENOSPC>"
1624 msgstr "B<ENOSPC>"
1625
1626 #. type: Plain text
1627 #: build/C/man2/epoll_ctl.2:218
1628 msgid ""
1629 "The limit imposed by I</proc/sys/fs/epoll/max_user_watches> was encountered "
1630 "while trying to register (B<EPOLL_CTL_ADD>)  a new file descriptor on an "
1631 "epoll instance.  See B<epoll>(7)  for further details."
1632 msgstr ""
1633 "epoll インスタンスに新しいファイルディスクリプタを登録 (B<EPOLL_CTL_ADD>)  し"
1634 "ようとした際に、 I</proc/sys/fs/epoll/max_user_watches> で決まる上限に達し"
1635 "た。 詳細は B<epoll>(7)  を参照。"
1636
1637 #. type: TP
1638 #: build/C/man2/epoll_ctl.2:218
1639 #, no-wrap
1640 msgid "B<EPERM>"
1641 msgstr "B<EPERM>"
1642
1643 #. type: Plain text
1644 #: build/C/man2/epoll_ctl.2:224
1645 msgid "The target file I<fd> does not support B<epoll>."
1646 msgstr "対象ファイル I<fd> が B<epoll> をサポートしていない。"
1647
1648 #.  To be precise: kernel 2.5.44.
1649 #.  The interface should be finalized by Linux kernel 2.5.66.
1650 #. type: Plain text
1651 #: build/C/man2/epoll_ctl.2:229
1652 #, fuzzy
1653 #| msgid "B<epoll_pwait>()  was added to Linux in kernel 2.6.19."
1654 msgid "B<epoll_ctl>()  was added to the kernel in version 2.6."
1655 msgstr "B<epoll_pwait>()  はカーネル 2.6.19 で Linux に追加された。"
1656
1657 #. type: Plain text
1658 #: build/C/man2/epoll_ctl.2:233
1659 #, fuzzy
1660 #| msgid ""
1661 #| "B<epoll_ctl>()  is Linux-specific, and was introduced in kernel 2.5.44."
1662 msgid ""
1663 "B<epoll_ctl>()  is Linux-specific.  Library support is provided in glibc "
1664 "starting with version 2.3.2."
1665 msgstr "B<epoll_ctl>()  は Linux 独自であり、カーネル 2.5.44 で導入された。"
1666
1667 #. type: Plain text
1668 #: build/C/man2/epoll_ctl.2:238
1669 msgid ""
1670 "The B<epoll> interface supports all file descriptors that support B<poll>(2)."
1671 msgstr ""
1672 "B<epoll> インタフェースは、 B<poll>(2)  に対応している全てのファイルディスク"
1673 "リプタに対応している。"
1674
1675 #. type: SH
1676 #: build/C/man2/epoll_ctl.2:238 build/C/man2/poll.2:334
1677 #, no-wrap
1678 msgid "BUGS"
1679 msgstr "バグ"
1680
1681 #. type: Plain text
1682 #: build/C/man2/epoll_ctl.2:252
1683 msgid ""
1684 "In kernel versions before 2.6.9, the B<EPOLL_CTL_DEL> operation required a "
1685 "non-NULL pointer in I<event>, even though this argument is ignored.  Since "
1686 "Linux 2.6.9, I<event> can be specified as NULL when using B<EPOLL_CTL_DEL>.  "
1687 "Applications that need to be portable to kernels before 2.6.9 should specify "
1688 "a non-NULL pointer in I<event>."
1689 msgstr ""
1690 "Linux 2.6.9 より前では、 B<EPOLL_CTL_DEL> 操作の際、引き数 I<event> に (たと"
1691 "え無視される場合であっても) NULL でないポインタを渡す必要があった。 カーネル "
1692 "2.6.9 以降では、 B<EPOLL_CTL_DEL> を使う際に I<event> に NULL を指定できるよ"
1693 "うになっている。 2.6.9 より前のカーネルへの移植性が必要なアプリケーションで"
1694 "は、 I<event> に NULL でないポインタを指定すべきである。"
1695
1696 #. type: Plain text
1697 #: build/C/man2/epoll_ctl.2:257
1698 msgid "B<epoll_create>(2), B<epoll_wait>(2), B<poll>(2), B<epoll>(7)"
1699 msgstr "B<epoll_create>(2), B<epoll_wait>(2), B<poll>(2), B<epoll>(7)"
1700
1701 #. type: TH
1702 #: build/C/man2/epoll_wait.2:23
1703 #, no-wrap
1704 msgid "EPOLL_WAIT"
1705 msgstr "EPOLL_WAIT"
1706
1707 #. type: Plain text
1708 #: build/C/man2/epoll_wait.2:26
1709 msgid ""
1710 "epoll_wait, epoll_pwait - wait for an I/O event on an epoll file descriptor"
1711 msgstr ""
1712 "epoll_wait, epoll_pwait - epoll ファイルディスクリプタの I/O イベントを待つ"
1713
1714 #. type: Plain text
1715 #: build/C/man2/epoll_wait.2:35
1716 #, no-wrap
1717 msgid ""
1718 "B<int epoll_wait(int >I<epfd>B<, struct epoll_event *>I<events>B<,>\n"
1719 "B<               int >I<maxevents>B<, int >I<timeout>B<);>\n"
1720 "B<int epoll_pwait(int >I<epfd>B<, struct epoll_event *>I<events>B<,>\n"
1721 "B<               int >I<maxevents>B<, int >I<timeout>B<,>\n"
1722 "B<               const sigset_t *>I<sigmask>B<);>\n"
1723 msgstr ""
1724 "B<int epoll_wait(int >I<epfd>B<, struct epoll_event *>I<events>B<,>\n"
1725 "B<               int >I<maxevents>B<, int >I<timeout>B<);>\n"
1726 "B<int epoll_pwait(int >I<epfd>B<, struct epoll_event *>I<events>B<,>\n"
1727 "B<               int >I<maxevents>B<, int >I<timeout>B<,>\n"
1728 "B<               const sigset_t *>I<sigmask>B<);>\n"
1729
1730 #. type: Plain text
1731 #: build/C/man2/epoll_wait.2:53
1732 msgid ""
1733 "The B<epoll_wait>()  system call waits for events on the B<epoll> instance "
1734 "referred to by the file descriptor I<epfd>.  The memory area pointed to by "
1735 "I<events> will contain the events that will be available for the caller.  Up "
1736 "to I<maxevents> are returned by B<epoll_wait>().  The I<maxevents> argument "
1737 "must be greater than zero."
1738 msgstr ""
1739 "B<epoll_wait>()  システムコールは、 ファイルディスクリプタ I<epfd> で参照され"
1740 "る B<epoll> インスタンスに対するイベントを待つ。 I<events> が指すメモリ領域に"
1741 "は、呼び出し側が利用可能なイベントが格納される。 最大 I<maxevents> 個のイベン"
1742 "トが B<epoll_wait>()  によって返される。 I<maxevents> 引き数は 0 より大きくな"
1743 "ければならない。"
1744
1745 #. type: Plain text
1746 #: build/C/man2/epoll_wait.2:67
1747 msgid ""
1748 "The call waits for a maximum time of I<timeout> milliseconds.  Specifying a "
1749 "I<timeout> of -1 makes B<epoll_wait>()  wait indefinitely, while specifying "
1750 "a I<timeout> equal to zero makes B<epoll_wait>()  to return immediately even "
1751 "if no events are available (return code equal to zero)."
1752 msgstr ""
1753 "最大で I<timeout> ミリ秒間イベントを待つ。 I<timeout> を -1 に指定すると、 "
1754 "B<epoll_wait>()  は無限に待つ。 また I<timeout> を 0 に指定すると、 "
1755 "B<epoll_wait>()  はイベントが利用可能でなくても、すぐに返る (返り値は 0 であ"
1756 "る)。"
1757
1758 #. type: Plain text
1759 #: build/C/man2/epoll_wait.2:71
1760 msgid "The I<struct epoll_event> is defined as :"
1761 msgstr "I<struct epoll_event> は以下のように定義される:"
1762
1763 #. type: Plain text
1764 #: build/C/man2/epoll_wait.2:80
1765 #, no-wrap
1766 msgid ""
1767 "typedef union epoll_data {\n"
1768 "    void    *ptr;\n"
1769 "    int      fd;\n"
1770 "    uint32_t u32;\n"
1771 "    uint64_t u64;\n"
1772 "} epoll_data_t;\n"
1773 msgstr ""
1774 "typedef union epoll_data {\n"
1775 "    void    *ptr;\n"
1776 "    int      fd;\n"
1777 "    uint32_t u32;\n"
1778 "    uint64_t u64;\n"
1779 "} epoll_data_t;\n"
1780
1781 #. type: Plain text
1782 #: build/C/man2/epoll_wait.2:85
1783 #, no-wrap
1784 msgid ""
1785 "struct epoll_event {\n"
1786 "    uint32_t     events;    /* Epoll events */\n"
1787 "    epoll_data_t data;      /* User data variable */\n"
1788 "};\n"
1789 msgstr ""
1790 "struct epoll_event {\n"
1791 "    uint32_t     events;    /* epoll イベント */\n"
1792 "    epoll_data_t data;      /* ユーザデータ変数 */\n"
1793 "};\n"
1794
1795 #. type: Plain text
1796 #: build/C/man2/epoll_wait.2:96
1797 msgid ""
1798 "The I<data> of each returned structure will contain the same data the user "
1799 "set with an B<epoll_ctl>(2)  (B<EPOLL_CTL_ADD>,B<EPOLL_CTL_MOD>)  while the "
1800 "I<events> member will contain the returned event bit field."
1801 msgstr ""
1802 "返される構造体の I<data> メンバには、ユーザが B<epoll_ctl>(2)  "
1803 "(B<EPOLL_CTL_ADD>, B<EPOLL_CTL_MOD>)  で指定したデータが格納される。 一方、 "
1804 "I<events> メンバには返された利用可能なイベントのビットフィールドが格納され"
1805 "る。"
1806
1807 #. type: SS
1808 #: build/C/man2/epoll_wait.2:96
1809 #, no-wrap
1810 msgid "epoll_pwait()"
1811 msgstr "epoll_pwait()"
1812
1813 #. type: Plain text
1814 #: build/C/man2/epoll_wait.2:110
1815 msgid ""
1816 "The relationship between B<epoll_wait>()  and B<epoll_pwait>()  is analogous "
1817 "to the relationship between B<select>(2)  and B<pselect>(2): like B<pselect>"
1818 "(2), B<epoll_pwait>()  allows an application to safely wait until either a "
1819 "file descriptor becomes ready or until a signal is caught."
1820 msgstr ""
1821 "B<epoll_wait>()  と B<epoll_pwait>()  の関係は、 B<select>(2)  と B<pselect>"
1822 "(2)  の関係と同様である。 B<pselect>(2)  同様、 B<epoll_pwait>()  を使うと、"
1823 "アプリケーションは、ファイルディスクリプタが準備できた状態になるか、 シグナル"
1824 "が捕捉されるまで、安全に待つことができる。"
1825
1826 #. type: Plain text
1827 #: build/C/man2/epoll_wait.2:114
1828 msgid "The following B<epoll_pwait>()  call:"
1829 msgstr "以下の B<epoll_pwait>()  の呼び出しは、"
1830
1831 #. type: Plain text
1832 #: build/C/man2/epoll_wait.2:117
1833 #, no-wrap
1834 msgid "    ready = epoll_pwait(epfd, &events, maxevents, timeout, &sigmask);\n"
1835 msgstr "    ready = epoll_pwait(epfd, &events, maxevents, timeout, &sigmask);\n"
1836
1837 #. type: Plain text
1838 #: build/C/man2/epoll_wait.2:122 build/C/man2/poll.2:206
1839 msgid "is equivalent to I<atomically> executing the following calls:"
1840 msgstr "次の呼び出しを I<atomic> に実行するのと等価である。"
1841
1842 #. type: Plain text
1843 #: build/C/man2/epoll_wait.2:125
1844 #, no-wrap
1845 msgid "    sigset_t origmask;\n"
1846 msgstr "    sigset_t origmask;\n"
1847
1848 #. type: Plain text
1849 #: build/C/man2/epoll_wait.2:129
1850 #, no-wrap
1851 msgid ""
1852 "    sigprocmask(SIG_SETMASK, &sigmask, &origmask);\n"
1853 "    ready = epoll_wait(epfd, &events, maxevents, timeout);\n"
1854 "    sigprocmask(SIG_SETMASK, &origmask, NULL);\n"
1855 msgstr ""
1856 "    sigprocmask(SIG_SETMASK, &sigmask, &origmask);\n"
1857 "    ready = epoll_wait(epfd, &events, maxevents, timeout);\n"
1858 "    sigprocmask(SIG_SETMASK, &origmask, NULL);\n"
1859
1860 #. type: Plain text
1861 #: build/C/man2/epoll_wait.2:137
1862 msgid ""
1863 "The I<sigmask> argument may be specified as NULL, in which case "
1864 "B<epoll_pwait>()  is equivalent to B<epoll_wait>()."
1865 msgstr ""
1866 "I<sigmask> 引き数には NULL を指定してもよい。 その場合には、 B<epoll_pwait>"
1867 "()  は B<epoll_wait>()  と等価となる。"
1868
1869 #. type: Plain text
1870 #: build/C/man2/epoll_wait.2:149
1871 msgid ""
1872 "When successful, B<epoll_wait>()  returns the number of file descriptors "
1873 "ready for the requested I/O, or zero if no file descriptor became ready "
1874 "during the requested I<timeout> milliseconds.  When an error occurs, "
1875 "B<epoll_wait>()  returns -1 and I<errno> is set appropriately."
1876 msgstr ""
1877 "成功した場合、 B<epoll_wait>()  は要求された I/O に対して準備ができているファ"
1878 "イルディスクリプタの数を返す。 また要求された I<timeout> ミリ秒の間にファイル"
1879 "ディスクリプタが準備できない場合は、0 を返す。 エラーが起こった場合、 "
1880 "B<epoll_wait>()  は -1 を返し、 I<errno> を適切に設定する。"
1881
1882 #. type: Plain text
1883 #: build/C/man2/epoll_wait.2:154
1884 msgid "I<epfd> is not a valid file descriptor."
1885 msgstr "I<epfd> が有効なファイルディスクリプタでない。"
1886
1887 #. type: TP
1888 #: build/C/man2/epoll_wait.2:154 build/C/man2/poll.2:268
1889 #, no-wrap
1890 msgid "B<EFAULT>"
1891 msgstr "B<EFAULT>"
1892
1893 #. type: Plain text
1894 #: build/C/man2/epoll_wait.2:159
1895 msgid ""
1896 "The memory area pointed to by I<events> is not accessible with write "
1897 "permissions."
1898 msgstr "I<events> で指されるメモリ領域に書き込み権限でアクセスできない。"
1899
1900 #. type: TP
1901 #: build/C/man2/epoll_wait.2:159 build/C/man2/poll.2:272
1902 #, no-wrap
1903 msgid "B<EINTR>"
1904 msgstr "B<EINTR>"
1905
1906 #. type: Plain text
1907 #: build/C/man2/epoll_wait.2:166
1908 msgid ""
1909 "The call was interrupted by a signal handler before any of the requested "
1910 "events occurred or the I<timeout> expired; see B<signal>(7)."
1911 msgstr ""
1912 "要求されたどのイベントも発生せず、かつ I<timeout> の期限が切れる前に、システ"
1913 "ムコールがシグナルハンドラによって割り込まれた。 B<signal>(7)  参照。"
1914
1915 #. type: Plain text
1916 #: build/C/man2/epoll_wait.2:174
1917 msgid ""
1918 "I<epfd> is not an B<epoll> file descriptor, or I<maxevents> is less than or "
1919 "equal to zero."
1920 msgstr ""
1921 "I<epfd> が B<epoll> ファイルディスクリプタでない。 または I<maxevents> が 0 "
1922 "以下である。"
1923
1924 #.  To be precise: kernel 2.5.44.
1925 #.  The interface should be finalized by Linux kernel 2.5.66.
1926 #. type: Plain text
1927 #: build/C/man2/epoll_wait.2:180
1928 #, fuzzy
1929 #| msgid ""
1930 #| "The B<epoll> API was introduced in Linux kernel 2.5.44.  Support was "
1931 #| "added to glibc in version 2.3.2."
1932 msgid ""
1933 "B<epoll_wait>()  was added to the kernel in version 2.6.  Library support is "
1934 "provided in glibc starting with version 2.3.2."
1935 msgstr ""
1936 "B<epoll> API は Linux カーネル 2.5.44 に導入された。 glibc でのサポートはバー"
1937 "ジョン 2.3.2 で追加された。"
1938
1939 #. type: Plain text
1940 #: build/C/man2/epoll_wait.2:184
1941 #, fuzzy
1942 #| msgid ""
1943 #| "The B<epoll> API was introduced in Linux kernel 2.5.44.  Support was "
1944 #| "added to glibc in version 2.3.2."
1945 msgid ""
1946 "B<epoll_pwait>()  was added to Linux in kernel 2.6.19.  Library support is "
1947 "provided in glibc starting with version 2.6."
1948 msgstr ""
1949 "B<epoll> API は Linux カーネル 2.5.44 に導入された。 glibc でのサポートはバー"
1950 "ジョン 2.3.2 で追加された。"
1951
1952 #. type: Plain text
1953 #: build/C/man2/epoll_wait.2:187
1954 #, fuzzy
1955 #| msgid ""
1956 #| "B<epoll_wait>()  is Linux-specific, and was introduced in kernel 2.5.44."
1957 msgid "B<epoll_wait>()  is Linux-specific."
1958 msgstr "B<epoll_wait>()  は Linux 独自であり、カーネル 2.5.44 で導入された。"
1959
1960 #. type: Plain text
1961 #: build/C/man2/epoll_wait.2:191
1962 msgid "B<epoll_create>(2), B<epoll_ctl>(2), B<epoll>(7)"
1963 msgstr "B<epoll_create>(2), B<epoll_ctl>(2), B<epoll>(7)"
1964
1965 #. type: TH
1966 #: build/C/man2/poll.2:31
1967 #, no-wrap
1968 msgid "POLL"
1969 msgstr "POLL"
1970
1971 #. type: TH
1972 #: build/C/man2/poll.2:31
1973 #, no-wrap
1974 msgid "2010-09-20"
1975 msgstr "2010-09-20"
1976
1977 #. type: Plain text
1978 #: build/C/man2/poll.2:34
1979 msgid "poll, ppoll - wait for some event on a file descriptor"
1980 msgstr "poll, ppoll - ファイルディスクリプタにおけるイベントを待つ"
1981
1982 #. type: Plain text
1983 #: build/C/man2/poll.2:37
1984 #, no-wrap
1985 msgid "B<#include E<lt>poll.hE<gt>>\n"
1986 msgstr "B<#include E<lt>poll.hE<gt>>\n"
1987
1988 #. type: Plain text
1989 #: build/C/man2/poll.2:39
1990 #, no-wrap
1991 msgid "B<int poll(struct pollfd *>I<fds>B<, nfds_t >I<nfds>B<, int >I<timeout>B<);>\n"
1992 msgstr "B<int poll(struct pollfd *>I<fds>B<, nfds_t >I<nfds>B<, int >I<timeout>B<);>\n"
1993
1994 #. type: Plain text
1995 #: build/C/man2/poll.2:42
1996 #, no-wrap
1997 msgid ""
1998 "B<#define _GNU_SOURCE>         /* See feature_test_macros(7) */\n"
1999 "B<#include E<lt>poll.hE<gt>>\n"
2000 msgstr ""
2001 "B<#define _GNU_SOURCE>         /* feature_test_macros(7) 参照 */\n"
2002 "B<#include E<lt>poll.hE<gt>>\n"
2003
2004 #. type: Plain text
2005 #: build/C/man2/poll.2:45
2006 #, no-wrap
2007 msgid ""
2008 "B<int ppoll(struct pollfd *>I<fds>B<, nfds_t >I<nfds>B<, >\n"
2009 "B<        const struct timespec *>I<timeout_ts>B<, const sigset_t *>I<sigmask>B<);>\n"
2010 msgstr ""
2011 "B<int ppoll(struct pollfd *>I<fds>B<, nfds_t >I<nfds>B<, >\n"
2012 "B<        const struct timespec *>I<timeout_ts>B<, const sigset_t *>I<sigmask>B<);>\n"
2013
2014 #. type: Plain text
2015 #: build/C/man2/poll.2:52
2016 msgid ""
2017 "B<poll>()  performs a similar task to B<select>(2): it waits for one of a "
2018 "set of file descriptors to become ready to perform I/O."
2019 msgstr ""
2020 "B<poll>()  は B<select>(2)  と同様の仕事を行う、つまり、ファイルディスクリプ"
2021 "タ集合のいずれか一つが I/O を実行可能な状態になるのを待つ。"
2022
2023 #. type: Plain text
2024 #: build/C/man2/poll.2:56
2025 msgid ""
2026 "The set of file descriptors to be monitored is specified in the I<fds> "
2027 "argument, which is an array of structures of the following form:"
2028 msgstr ""
2029 "監視するファイルディスクリプタ集合は、 I<fds> 引き数で指定する。 I<fds> は、"
2030 "以下の型の構造体の配列である。"
2031
2032 #. type: Plain text
2033 #: build/C/man2/poll.2:64
2034 #, no-wrap
2035 msgid ""
2036 "struct pollfd {\n"
2037 "    int   fd;         /* file descriptor */\n"
2038 "    short events;     /* requested events */\n"
2039 "    short revents;    /* returned events */\n"
2040 "};\n"
2041 msgstr ""
2042 "struct pollfd {\n"
2043 "    int   fd;         /* file descriptor */\n"
2044 "    short events;     /* requested events */\n"
2045 "    short revents;    /* returned events */\n"
2046 "};\n"
2047
2048 #. type: Plain text
2049 #: build/C/man2/poll.2:71
2050 msgid ""
2051 "The caller should specify the number of items in the I<fds> array in I<nfds>."
2052 msgstr "I<nfds> には、 I<fds> 配列の要素数を指定する。"
2053
2054 #. type: Plain text
2055 #: build/C/man2/poll.2:75
2056 msgid "The field I<fd> contains a file descriptor for an open file."
2057 msgstr ""
2058 "構造体の I<fd> にはオープンしたファイルのファイルディスクリプタを入れる。"
2059
2060 #. type: Plain text
2061 #: build/C/man2/poll.2:80
2062 msgid ""
2063 "The field I<events> is an input parameter, a bit mask specifying the events "
2064 "the application is interested in."
2065 msgstr ""
2066 "構造体の I<events> 要素は入力パラメータで、アプリケーションが興味を持っている"
2067 "イベントの ビットマスクを指定する。"
2068
2069 #. type: Plain text
2070 #: build/C/man2/poll.2:99
2071 msgid ""
2072 "The field I<revents> is an output parameter, filled by the kernel with the "
2073 "events that actually occurred.  The bits returned in I<revents> can include "
2074 "any of those specified in I<events>, or one of the values B<POLLERR>, "
2075 "B<POLLHUP>, or B<POLLNVAL>.  (These three bits are meaningless in the "
2076 "I<events> field, and will be set in the I<revents> field whenever the "
2077 "corresponding condition is true.)"
2078 msgstr ""
2079 "I<revents> 要素は出力パラメータで、実際に起こったイベントがカーネルにより設定"
2080 "される。 I<revents> で返されるビット列には、 I<events> で指定したもののどれ"
2081 "か、もしくは B<POLLERR>, B<POLLHUP>, B<POLLNVAL> のうちの一つが含まれる "
2082 "(B<POLLERR>, B<POLLHUP>, B<POLLNVAL> の 3つのビットは I<events> に指定しても"
2083 "意味がなく、対応した状態が真の場合に I<revents> に設定される)。"
2084
2085 #. type: Plain text
2086 #: build/C/man2/poll.2:104
2087 msgid ""
2088 "If none of the events requested (and no error) has occurred for any of the "
2089 "file descriptors, then B<poll>()  blocks until one of the events occurs."
2090 msgstr ""
2091 "どのファイルディスクリプタにも要求したイベントが発生しておらず、 エラーも起こ"
2092 "らない場合、 B<poll>()  はイベントのうちいずれか一つが発生するまで停止 "
2093 "(block) する。"
2094
2095 #. type: Plain text
2096 #: build/C/man2/poll.2:113
2097 msgid ""
2098 "The I<timeout> argument specifies an upper limit on the time for which "
2099 "B<poll>()  will block, in milliseconds.  Specifying a negative value in "
2100 "I<timeout> means an infinite timeout."
2101 msgstr ""
2102 "I<timeout> 引き数は B<poll>()  が停止する時間の上限を設定するもので、ミリ秒単"
2103 "位で指定する。 I<timeout> に負の値を指定すると、タイムアウト時間が無限とな"
2104 "る。"
2105
2106 #. type: Plain text
2107 #: build/C/man2/poll.2:119
2108 msgid ""
2109 "The bits that may be set/returned in I<events> and I<revents> are defined in "
2110 "I<E<lt>poll.hE<gt>>:"
2111 msgstr ""
2112 "I<events> に指定したり、 I<revents> で返されるビットは I<E<lt>poll.hE<gt>> で"
2113 "定義されている:"
2114
2115 #. type: TP
2116 #: build/C/man2/poll.2:120
2117 #, no-wrap
2118 msgid "B<POLLIN>"
2119 msgstr "B<POLLIN>"
2120
2121 #. type: Plain text
2122 #: build/C/man2/poll.2:123
2123 msgid "There is data to read."
2124 msgstr "読み出し可能なデータがある。"
2125
2126 #. type: TP
2127 #: build/C/man2/poll.2:123
2128 #, no-wrap
2129 msgid "B<POLLPRI>"
2130 msgstr "B<POLLPRI>"
2131
2132 #. type: Plain text
2133 #: build/C/man2/poll.2:127
2134 msgid ""
2135 "There is urgent data to read (e.g., out-of-band data on TCP socket; "
2136 "pseudoterminal master in packet mode has seen state change in slave)."
2137 msgstr ""
2138 "読み出し可能な緊急データ (urgent data) がある (例えば、TCP ソケットの帯域外 "
2139 "(out-of-band data) データを受信した場合や、 パケットモードの擬似端末のマスタ"
2140 "がスレーブ側の変化を見つけたとき)。"
2141
2142 #. type: TP
2143 #: build/C/man2/poll.2:127
2144 #, no-wrap
2145 msgid "B<POLLOUT>"
2146 msgstr "B<POLLOUT>"
2147
2148 #. type: Plain text
2149 #: build/C/man2/poll.2:130
2150 msgid "Writing now will not block."
2151 msgstr "書き込みが停止 (block) しない状態である。"
2152
2153 #. type: TP
2154 #: build/C/man2/poll.2:130
2155 #, no-wrap
2156 msgid "B<POLLRDHUP> (since Linux 2.6.17)"
2157 msgstr "B<POLLRDHUP> (Linux 2.6.17 以降)"
2158
2159 #. type: Plain text
2160 #: build/C/man2/poll.2:141
2161 msgid ""
2162 "Stream socket peer closed connection, or shut down writing half of "
2163 "connection.  The B<_GNU_SOURCE> feature test macro must be defined (before "
2164 "including I<any> header files)  in order to obtain this definition."
2165 msgstr ""
2166 "ストリームソケットの他端が、コネクションを close したか、 コネクションの書き"
2167 "込み側を shutdown した。 この定義を有効にするには、 (「どの」ヘッダファイルを"
2168 "インクルードするよりも前に)  B<_GNU_SOURCE> 機能検査マクロを定義しなければな"
2169 "らない。"
2170
2171 #. type: TP
2172 #: build/C/man2/poll.2:141
2173 #, no-wrap
2174 msgid "B<POLLERR>"
2175 msgstr "B<POLLERR>"
2176
2177 #. type: Plain text
2178 #: build/C/man2/poll.2:144
2179 msgid "Error condition (output only)."
2180 msgstr "エラー状態 (出力の場合のみ)。"
2181
2182 #. type: TP
2183 #: build/C/man2/poll.2:144
2184 #, no-wrap
2185 msgid "B<POLLHUP>"
2186 msgstr "B<POLLHUP>"
2187
2188 #. type: Plain text
2189 #: build/C/man2/poll.2:147
2190 msgid "Hang up (output only)."
2191 msgstr "ハングアップした (出力の場合のみ)。"
2192
2193 #. type: TP
2194 #: build/C/man2/poll.2:147
2195 #, no-wrap
2196 msgid "B<POLLNVAL>"
2197 msgstr "B<POLLNVAL>"
2198
2199 #. type: Plain text
2200 #: build/C/man2/poll.2:152
2201 msgid "Invalid request: I<fd> not open (output only)."
2202 msgstr "不正な要求: I<fd> がオープンされていない (出力の場合のみ)。"
2203
2204 #. type: Plain text
2205 #: build/C/man2/poll.2:158
2206 msgid ""
2207 "When compiling with B<_XOPEN_SOURCE> defined, one also has the following, "
2208 "which convey no further information beyond the bits listed above:"
2209 msgstr ""
2210 "B<_XOPEN_SOURCE> を定義してコンパイルした場合には、以下の定義も行われる。 た"
2211 "だし、上記のリストにあるビット以上の情報が得られる訳ではない。"
2212
2213 #. type: TP
2214 #: build/C/man2/poll.2:159
2215 #, no-wrap
2216 msgid "B<POLLRDNORM>"
2217 msgstr "B<POLLRDNORM>"
2218
2219 #. type: Plain text
2220 #: build/C/man2/poll.2:163
2221 msgid "Equivalent to B<POLLIN>."
2222 msgstr "B<POLLIN> と同じ。"
2223
2224 #. type: TP
2225 #: build/C/man2/poll.2:163
2226 #, no-wrap
2227 msgid "B<POLLRDBAND>"
2228 msgstr "B<POLLRDBAND>"
2229
2230 #.  POLLRDBAND is used in the DECnet protocol.
2231 #. type: Plain text
2232 #: build/C/man2/poll.2:167
2233 msgid "Priority band data can be read (generally unused on Linux)."
2234 msgstr ""
2235 "優先帯域データ (priority band data) が読み出し可能である (普通は Linux では使"
2236 "用されない)。"
2237
2238 #. type: TP
2239 #: build/C/man2/poll.2:167
2240 #, no-wrap
2241 msgid "B<POLLWRNORM>"
2242 msgstr "B<POLLWRNORM>"
2243
2244 #. type: Plain text
2245 #: build/C/man2/poll.2:171
2246 msgid "Equivalent to B<POLLOUT>."
2247 msgstr "B<POLLOUT> と同じ。"
2248
2249 #. type: TP
2250 #: build/C/man2/poll.2:171
2251 #, no-wrap
2252 msgid "B<POLLWRBAND>"
2253 msgstr "B<POLLWRBAND>"
2254
2255 #. type: Plain text
2256 #: build/C/man2/poll.2:174
2257 msgid "Priority data may be written."
2258 msgstr "優先帯域データ (priority data) が書き込み可能である。"
2259
2260 #. type: Plain text
2261 #: build/C/man2/poll.2:178
2262 msgid "Linux also knows about, but does not use B<POLLMSG>."
2263 msgstr "Linux では B<POLLMSG> も定義されているが、使用されていない。"
2264
2265 #. type: SS
2266 #: build/C/man2/poll.2:178
2267 #, no-wrap
2268 msgid "ppoll()"
2269 msgstr "ppoll()"
2270
2271 #. type: Plain text
2272 #: build/C/man2/poll.2:192
2273 msgid ""
2274 "The relationship between B<poll>()  and B<ppoll>()  is analogous to the "
2275 "relationship between B<select>(2)  and B<pselect>(2): like B<pselect>(2), "
2276 "B<ppoll>()  allows an application to safely wait until either a file "
2277 "descriptor becomes ready or until a signal is caught."
2278 msgstr ""
2279 "B<poll>()  と B<ppoll>()  の関係は B<select>(2)  と B<pselect>(2)  の関係と同"
2280 "じようなものである: B<pselect>(2)  と同様に、 B<ppoll>()  を使うと、アプリ"
2281 "ケーションはファイルディスクリプタの状態変化 もしくはシグナルの捕捉を安全に待"
2282 "つことができる。"
2283
2284 #. type: Plain text
2285 #: build/C/man2/poll.2:198
2286 msgid ""
2287 "Other than the difference in the precision of the I<timeout> argument, the "
2288 "following B<ppoll>()  call:"
2289 msgstr ""
2290 "I<timeout> 引き数の精度の違いを除くと、以下の B<ppoll>()  の呼び出しは、"
2291
2292 #. type: Plain text
2293 #: build/C/man2/poll.2:201
2294 #, no-wrap
2295 msgid "    ready = ppoll(&fds, nfds, timeout_ts, &sigmask);\n"
2296 msgstr "    ready = ppoll(&fds, nfds, timeout_ts, &sigmask);\n"
2297
2298 #. type: Plain text
2299 #: build/C/man2/poll.2:210
2300 #, no-wrap
2301 msgid ""
2302 "    sigset_t origmask;\n"
2303 "    int timeout;\n"
2304 msgstr ""
2305 "    sigset_t origmask;\n"
2306 "    int timeout;\n"
2307
2308 #. type: Plain text
2309 #: build/C/man2/poll.2:216
2310 #, no-wrap
2311 msgid ""
2312 "    timeout = (timeout_ts == NULL) ? -1 :\n"
2313 "              (timeout_ts.tv_sec * 1000 + timeout_ts.tv_nsec / 1000000);\n"
2314 "    sigprocmask(SIG_SETMASK, &sigmask, &origmask);\n"
2315 "    ready = poll(&fds, nfds, timeout);\n"
2316 "    sigprocmask(SIG_SETMASK, &origmask, NULL);\n"
2317 msgstr ""
2318 "    timeout = (timeout_ts == NULL) ? -1 :\n"
2319 "              (timeout_ts.tv_sec * 1000 + timeout_ts.tv_nsec / 1000000);\n"
2320 "    sigprocmask(SIG_SETMASK, &sigmask, &origmask);\n"
2321 "    ready = poll(&fds, nfds, timeout);\n"
2322 "    sigprocmask(SIG_SETMASK, &origmask, NULL);\n"
2323
2324 #. type: Plain text
2325 #: build/C/man2/poll.2:223
2326 msgid ""
2327 "See the description of B<pselect>(2)  for an explanation of why B<ppoll>()  "
2328 "is necessary."
2329 msgstr ""
2330 "なぜ B<ppoll>()  が必要なのかについての説明は B<pselect>(2)  の説明を参照のこ"
2331 "と。"
2332
2333 #. type: Plain text
2334 #: build/C/man2/poll.2:235
2335 msgid ""
2336 "If the I<sigmask> argument is specified as NULL, then no signal mask "
2337 "manipulation is performed (and thus B<ppoll>()  differs from B<poll>()  only "
2338 "in the precision of the I<timeout> argument)."
2339 msgstr ""
2340 "I<sigmask> 引き数に NULL が指定された場合、シグナルマスクの操作は行われない "
2341 "(したがって、 B<ppoll>()  の B<poll>()  との違いは I<timeout> 引き数の精度だ"
2342 "けとなる)。"
2343
2344 #. type: Plain text
2345 #: build/C/man2/poll.2:242
2346 msgid ""
2347 "The I<timeout_ts> argument specifies an upper limit on the amount of time "
2348 "that B<ppoll>()  will block.  This argument is a pointer to a structure of "
2349 "the following form:"
2350 msgstr ""
2351 "I<timeout> 引き数は B<ppoll>()  が停止する時間の上限を指定するものである。 こ"
2352 "の引き数には以下の型の構造体へのポインタを指定する。"
2353
2354 #. type: Plain text
2355 #: build/C/man2/poll.2:249
2356 #, no-wrap
2357 msgid ""
2358 "struct timespec {\n"
2359 "    long    tv_sec;         /* seconds */\n"
2360 "    long    tv_nsec;        /* nanoseconds */\n"
2361 "};\n"
2362 msgstr ""
2363 "struct timespec {\n"
2364 "    long    tv_sec;         /* seconds */\n"
2365 "    long    tv_nsec;        /* nanoseconds */\n"
2366 "};\n"
2367
2368 #. type: Plain text
2369 #: build/C/man2/poll.2:257
2370 msgid ""
2371 "If I<timeout_ts> is specified as NULL, then B<ppoll>()  can block "
2372 "indefinitely."
2373 msgstr ""
2374 "I<timeout_ts> に NULL が指定された場合、 B<ppoll> は無限に停止することがあり"
2375 "得る。"
2376
2377 #. type: Plain text
2378 #: build/C/man2/poll.2:267
2379 msgid ""
2380 "On success, a positive number is returned; this is the number of structures "
2381 "which have nonzero I<revents> fields (in other words, those descriptors with "
2382 "events or errors reported).  A value of 0 indicates that the call timed out "
2383 "and no file descriptors were ready.  On error, -1 is returned, and I<errno> "
2384 "is set appropriately."
2385 msgstr ""
2386 "成功した場合は正の数を返す。この数は 0 以外の I<revents> 要素を持つ構造体の数"
2387 "である (別の言い方をすると、これらのディスクリプタ にはイベントかエラー報告が"
2388 "ある)。 値 0 は、タイムアウトとなり、どのファイルディスクリプタでもイベント"
2389 "が 発生しなかったことを示す。エラーの場合は -1 が返され、 I<errno> が適切に設"
2390 "定される。"
2391
2392 #. type: Plain text
2393 #: build/C/man2/poll.2:272
2394 msgid ""
2395 "The array given as argument was not contained in the calling program's "
2396 "address space."
2397 msgstr ""
2398 "引き数として指定した配列が、呼び出したプロセスのアドレス空間に 含まれていな"
2399 "い。"
2400
2401 #. type: Plain text
2402 #: build/C/man2/poll.2:276
2403 msgid "A signal occurred before any requested event; see B<signal>(7)."
2404 msgstr ""
2405 "要求されたイベントのどれかが起こる前にシグナルが発生した。 B<signal>(7)  参"
2406 "照。"
2407
2408 #. type: Plain text
2409 #: build/C/man2/poll.2:283
2410 msgid "The I<nfds> value exceeds the B<RLIMIT_NOFILE> value."
2411 msgstr "I<nfds> の値が B<RLIMIT_NOFILE> を超えた。"
2412
2413 #. type: Plain text
2414 #: build/C/man2/poll.2:286
2415 msgid "There was no space to allocate file descriptor tables."
2416 msgstr "ファイルディスクリプタ・テーブルを確保するためのメモリがない。"
2417
2418 #. type: Plain text
2419 #: build/C/man2/poll.2:299
2420 msgid ""
2421 "The B<poll>()  system call was introduced in Linux 2.1.23.  The B<poll>()  "
2422 "library call was introduced in libc 5.4.28 (and provides emulation using "
2423 "B<select>(2)  if your kernel does not have a B<poll>()  system call)."
2424 msgstr ""
2425 "B<poll>()  システムコールは Linux 2.1.23 で導入された。 B<poll>()  ライブラ"
2426 "リ・コールは libc 5.4.28 から導入された (これはカーネルが B<poll>()  システム"
2427 "コールをサポートしていない場合に B<select>(2)  を使用してエミュレートを行"
2428 "う)。"
2429
2430 #. type: Plain text
2431 #: build/C/man2/poll.2:306
2432 msgid ""
2433 "The B<ppoll>()  system call was added to Linux in kernel 2.6.16.  The "
2434 "B<ppoll>()  library call was added in glibc 2.4."
2435 msgstr ""
2436 "B<ppoll>()  システムコールは カーネル 2.6.16 で Linux に追加された。 B<ppoll>"
2437 "()  ライブラリコールは glibc 2.4 に追加された。"
2438
2439 #.  NetBSD 3.0 has a pollts() which is like Linux ppoll().
2440 #. type: Plain text
2441 #: build/C/man2/poll.2:312
2442 msgid "B<poll>()  conforms to POSIX.1-2001.  B<ppoll>()  is Linux-specific."
2443 msgstr ""
2444 "B<poll>()  は POSIX.1-2001 に準拠している。 B<ppoll>()  は Linux 固有である。"
2445
2446 #. type: Plain text
2447 #: build/C/man2/poll.2:320
2448 msgid ""
2449 "Some implementations define the nonstandard constant B<INFTIM> with the "
2450 "value -1 for use as a I<timeout> for B<poll>().  This constant is not "
2451 "provided in glibc."
2452 msgstr ""
2453 "いくつかの実装では、値 -1 を持った非標準の定数 B<INFTIM> が定義されており、 "
2454 "B<poll>()  の I<timeout> の指定に使用できる。 この定数は glibc では定義されて"
2455 "いない。"
2456
2457 #. type: SS
2458 #: build/C/man2/poll.2:320
2459 #, no-wrap
2460 msgid "Linux Notes"
2461 msgstr "Linux での注意"
2462
2463 #. type: Plain text
2464 #: build/C/man2/poll.2:334
2465 msgid ""
2466 "The Linux B<ppoll>()  system call modifies its I<timeout_ts> argument.  "
2467 "However, the glibc wrapper function hides this behavior by using a local "
2468 "variable for the timeout argument that is passed to the system call.  Thus, "
2469 "the glibc B<ppoll>()  function does not modify its I<timeout_ts> argument."
2470 msgstr ""
2471 "Linux の B<ppoll>()  システムコールは I<timeout_ts> 引き数を変更する。 しか"
2472 "し、glibc のラッパー関数は、システムコールに渡す timeout 引き数 としてローカ"
2473 "ル変数を使うことでこの動作を隠蔽している。 このため、glibc の B<ppoll>()  関"
2474 "数では I<timeout_ts> 引き数は変更されない。"
2475
2476 #. type: Plain text
2477 #: build/C/man2/poll.2:338
2478 msgid ""
2479 "See the discussion of spurious readiness notifications under the BUGS "
2480 "section of B<select>(2)."
2481 msgstr ""
2482 "B<select>(2)  の「バグ」の節に書かれている、誤った準備完了通知 (spurious "
2483 "readiness notifications) についての議論を参照のこと。"
2484
2485 #. type: Plain text
2486 #: build/C/man2/poll.2:342
2487 msgid "B<select>(2), B<select_tut>(2), B<time>(7)"
2488 msgstr "B<select>(2), B<select_tut>(2), B<time>(7)"
2489
2490 #~ msgid "2009-01-17"
2491 #~ msgstr "2009-01-17"
2492
2493 #~ msgid "2010-08-29"
2494 #~ msgstr "2010-08-29"
2495
2496 #~ msgid ""
2497 #~ "Glibc support for B<epoll_pwait>()  is provided starting with version 2.6."
2498 #~ msgstr ""
2499 #~ "B<epoll_pwait>()  の glibc でのサポートは glibc 2.6 以降で提供されている。"