OSDN Git Service

(split) LDP: Update draft and release (from the previous commit)
[linuxjm/LDP_man-pages.git] / draft / man2 / pipe.2
1 .\" Copyright (C) 2005, 2008, Michael Kerrisk <mtk.manpages@gmail.com>
2 .\" (A few fragments remain from an earlier (1992) version by
3 .\" Drew Eckhardt <drew@cs.colorado.edu>.)
4 .\"
5 .\" %%%LICENSE_START(VERBATIM)
6 .\" Permission is granted to make and distribute verbatim copies of this
7 .\" manual provided the copyright notice and this permission notice are
8 .\" preserved on all copies.
9 .\"
10 .\" Permission is granted to copy and distribute modified versions of this
11 .\" manual under the conditions for verbatim copying, provided that the
12 .\" entire resulting derived work is distributed under the terms of a
13 .\" permission notice identical to this one.
14 .\"
15 .\" Since the Linux kernel and libraries are constantly changing, this
16 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
17 .\" responsibility for errors or omissions, or for damages resulting from
18 .\" the use of the information contained herein.  The author(s) may not
19 .\" have taken the same level of care in the production of this manual,
20 .\" which is licensed free of charge, as they might when working
21 .\" professionally.
22 .\"
23 .\" Formatted or processed versions of this manual, if unaccompanied by
24 .\" the source, must acknowledge the copyright and authors of this work.
25 .\" %%%LICENSE_END
26 .\"
27 .\" Modified by Michael Haardt <michael@moria.de>
28 .\" Modified 1993-07-23 by Rik Faith <faith@cs.unc.edu>
29 .\" Modified 1996-10-22 by Eric S. Raymond <esr@thyrsus.com>
30 .\" Modified 2004-06-17 by Michael Kerrisk <mtk.manpages@gmail.com>
31 .\" Modified 2005, mtk: added an example program
32 .\" Modified 2008-01-09, mtk: rewrote DESCRIPTION; minor additions
33 .\"     to EXAMPLE text.
34 .\" 2008-10-10, mtk: add description of pipe2()
35 .\"
36 .\"*******************************************************************
37 .\"
38 .\" This file was generated with po4a. Translate the source file.
39 .\"
40 .\"*******************************************************************
41 .\"
42 .\" Japanese Version Copyright (c) 1997 SUTO, Mitsuaki
43 .\"         all rights reserved.
44 .\" Translated Thu Jun 26 21:09:51 JST 1997
45 .\"         by SUTO, Mitsuaki <suto@av.crl.sony.co.jp>
46 .\" Updated & Modified Thu Feb 10 00:47:11 JST 2005
47 .\"         by Yuichi SATO <ysato444@yahoo.co.jp>
48 .\" Updated & Modified Sat Dec 17 08:10:16 JST 2005 by Yuichi SATO
49 .\" Updated 2008-02-10, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>, LDP v2.77
50 .\" Updated 2008-11-09, Akihiro MOTOKI, LDP v3.13
51 .\" Updated 2012-04-30, Akihiro MOTOKI <amotoki@gmail.com>
52 .\"
53 .TH PIPE 2 2014\-02\-11 Linux "Linux Programmer's Manual"
54 .SH 名前
55 pipe, pipe2 \- パイプを生成する
56 .SH 書式
57 .nf
58 \fB#include <unistd.h>\fP
59 .sp
60 \fBint pipe(int \fP\fIpipefd\fP\fB[2]);\fP
61 .sp
62 \fB#define _GNU_SOURCE\fP             /* feature_test_macros(7) 参照 */
63 \fB#include <fcntl.h>\fP              /* O_* 定数の定義の取得 */
64 \fB#include <unistd.h>\fP
65 .sp
66 \fBint pipe2(int \fP\fIpipefd\fP\fB[2], int \fP\fIflags\fP\fB);\fP
67 .fi
68 .SH 説明
69 \fBpipe\fP(2)  はパイプを生成する。 パイプは、プロセス間通信に使用できる単方向のデータチャネルである。 配列 \fIpipefd\fP
70 は、パイプの両端を参照する二つのファイルディスクリプタを 返すのに使用される。 \fIpipefd[0]\fP がパイプの読み出し側、
71 \fIpipefd[1]\fP がパイプの書き込み側である。 パイプの書き込み側に書き込まれたデータは、
72 パイプの読み出し側から読み出されるまでカーネルでバッファリングされる。 さらなる詳細は \fBpipe\fP(7)  を参照のこと。
73
74 \fBpipe2\fP()  は \fIflags\fP が 0 の場合には \fBpipe\fP()  と同じである。 \fIflags\fP に以下の値をビット毎の論理和
75 (OR) で指定することで、 異なる動作をさせることができる。
76 .TP 
77 \fBO_CLOEXEC\fP
78 新しく生成される二つのファイルディスクリプタの close\-on\-exec (\fBFD_CLOEXEC\fP)  フラグをセットする。
79 このフラグが役に立つ理由については、 \fBopen\fP(2)  の \fBO_CLOEXEC\fP フラグの説明を参照のこと。
80 .TP 
81 \fBO_DIRECT\fP (since Linux 3.4)
82 .\" commit 9883035ae7edef3ec62ad215611cb8e17d6a1a5d
83 Create a pipe that performs I/O in "packet" mode.  Each \fBwrite\fP(2)  to the
84 pipe is dealt with as a separate packet, and \fBread\fP(2)s from the pipe will
85 read one packet at a time.  Note the following points:
86 .RS
87 .IP * 3
88 Writes of greater than \fBPIPE_BUF\fP bytes (see \fBpipe\fP(7))  will be split
89 into multiple packets.
90 .IP *
91 If a \fBread\fP(2)  specifies a buffer size that is smaller than the next
92 packet, then the requested number of bytes are read, and the excess bytes in
93 the packet are discarded.  Specifying a buffer size of \fBPIPE_BUF\fP will be
94 sufficient to read the largest possible packets (see the previous point).
95 .IP *
96 Zero\-length packets are not supported.  (A \fBread\fP(2)  that specifies a
97 buffer size of zero is a no\-op, and returns 0.)
98 .RE
99 .IP
100 Older kernels that do not support this flag will indicate this via an
101 \fBEINVAL\fP error.
102 .TP 
103 \fBO_NONBLOCK\fP
104 新しく生成される二つのオープンファイル記述 (open file description) の \fBO_NONBLOCK\fP
105 ファイルステータスフラグをセットする。 このフラグを使うことで、 \fBO_NONBLOCK\fP をセットするために \fBfcntl\fP(2)
106 を追加で呼び出す必要がなくなる。
107 .SH 返り値
108 成功した場合は 0 が返される。エラーの場合は \-1 が返され、 \fIerrno\fP が適切に設定される。
109 .SH エラー
110 .TP 
111 \fBEFAULT\fP
112 \fIpipefd\fP が無効な値である。
113 .TP 
114 \fBEINVAL\fP
115 (\fBpipe2\fP())  \fIflags\fP に無効な値が入っている。
116 .TP 
117 \fBEMFILE\fP
118 このプロセスで使われているファイルディスクリプタが多すぎる。
119 .TP 
120 \fBENFILE\fP
121 オープンされているファイルの総数がシステムの制限に達している。
122 .SH バージョン
123 \fBpipe2\fP()  はバージョン 2.6.27 で Linux に追加された。 glibc によるサポートはバージョン 2.9 以降で利用できる。
124 .SH 準拠
125 \fBpipe\fP(): POSIX.1\-2001.
126
127 \fBpipe2\fP()  は Linux 固有である。
128 .SH 例
129 .\" fork.2 refers to this example program.
130 以下のプログラムではパイプを生成し、その後 \fBfork\fP(2)  で子プロセスを生成する。
131 子プロセスは同じパイプを参照するファイルディスクリプタ集合のコピーを 継承する。 \fBfork\fP(2)  の後、各プロセスはパイプ
132 (\fBpipe\fP(7)  を参照) に必要がなくなったディスクリプタをクローズする。 親プロセスはプログラムのコマンドライン引き数に含まれる
133 文字列をパイプへ書き込み、 子プロセスはこの文字列をパイプから 1 バイトずつ読み込んで標準出力にエコーする。
134 .SS プログラムのソース
135 .nf
136 #include <sys/types.h>
137 #include <sys/wait.h>
138 #include <stdio.h>
139 #include <stdlib.h>
140 #include <unistd.h>
141 #include <string.h>
142
143 int
144 main(int argc, char *argv[])
145 {
146     int pipefd[2];
147     pid_t cpid;
148     char buf;
149
150     if (argc != 2) {
151         fprintf(stderr, "Usage: %s <string>\en", argv[0]);
152         exit(EXIT_FAILURE);
153     }
154
155     if (pipe(pipefd) == \-1) {
156         perror("pipe");
157         exit(EXIT_FAILURE);
158     }
159
160     cpid = fork();
161     if (cpid == \-1) {
162         perror("fork");
163         exit(EXIT_FAILURE);
164     }
165
166     if (cpid == 0) {    /* 子プロセスがパイプから読み込む */
167         close(pipefd[1]);  /* 使用しない write 側はクローズする */
168
169         while (read(pipefd[0], &buf, 1) > 0)
170             write(STDOUT_FILENO, &buf, 1);
171
172         write(STDOUT_FILENO, "\en", 1);
173         close(pipefd[0]);
174         _exit(EXIT_SUCCESS);
175
176     } else {            /* 親プロセスは argv[1] をパイプへ書き込む */
177         close(pipefd[0]);          /* 使用しない read 側はクローズする */
178         write(pipefd[1], argv[1], strlen(argv[1]));
179         close(pipefd[1]);          /* 読み込み側が EOF に出会う */
180         wait(NULL);                /* 子プロセスを待つ */
181         exit(EXIT_SUCCESS);
182     }
183 }
184 .fi
185 .SH 関連項目
186 \fBfork\fP(2), \fBread\fP(2), \fBsocketpair\fP(2), \fBwrite\fP(2), \fBpopen\fP(3),
187 \fBpipe\fP(7)
188 .SH この文書について
189 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.63 の一部
190 である。プロジェクトの説明とバグ報告に関する情報は
191 http://www.kernel.org/doc/man\-pages/ に書かれている。