1994-05-27 05:00:24 +00:00
|
|
|
.\" Copyright (c) 1980, 1991, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\" 3. All advertising materials mentioning features or use of this software
|
|
|
|
.\" must display the following acknowledgement:
|
|
|
|
.\" This product includes software developed by the University of
|
|
|
|
.\" California, Berkeley and its contributors.
|
|
|
|
.\" 4. Neither the name of the University nor the names of its contributors
|
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" @(#)pipe.2 8.1 (Berkeley) 6/4/93
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1994-05-27 05:00:24 +00:00
|
|
|
.\"
|
|
|
|
.Dd June 4, 1993
|
|
|
|
.Dt PIPE 2
|
2001-07-10 13:41:46 +00:00
|
|
|
.Os
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh NAME
|
|
|
|
.Nm pipe
|
|
|
|
.Nd create descriptor pair for interprocess communication
|
2000-04-21 09:42:15 +00:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libc
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh SYNOPSIS
|
2001-10-01 16:09:29 +00:00
|
|
|
.In unistd.h
|
1994-05-27 05:00:24 +00:00
|
|
|
.Ft int
|
|
|
|
.Fn pipe "int *fildes"
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Fn pipe
|
2002-12-18 09:22:32 +00:00
|
|
|
system call
|
1994-05-27 05:00:24 +00:00
|
|
|
creates a
|
|
|
|
.Em pipe ,
|
|
|
|
which is an object allowing
|
1996-01-01 15:40:31 +00:00
|
|
|
bidirectional data flow,
|
1994-05-27 05:00:24 +00:00
|
|
|
and allocates a pair of file descriptors.
|
1996-01-01 15:40:31 +00:00
|
|
|
.Pp
|
|
|
|
By convention, the first descriptor is normally used as the
|
1994-05-27 05:00:24 +00:00
|
|
|
.Em read end
|
|
|
|
of the pipe,
|
1996-01-01 15:40:31 +00:00
|
|
|
and the second is normally the
|
2004-07-03 22:30:10 +00:00
|
|
|
.Em write end ,
|
1994-05-27 05:00:24 +00:00
|
|
|
so that data written to
|
|
|
|
.Fa fildes[1]
|
|
|
|
appears on (i.e., can be read from)
|
|
|
|
.Fa fildes[0] .
|
|
|
|
This allows the output of one program to be
|
|
|
|
sent
|
|
|
|
to another program:
|
|
|
|
the source's standard output is set up to be
|
|
|
|
the write end of the pipe,
|
|
|
|
and the sink's standard input is set up to be
|
|
|
|
the read end of the pipe.
|
|
|
|
The pipe itself persists until all its associated descriptors are
|
|
|
|
closed.
|
|
|
|
.Pp
|
1996-01-01 15:40:31 +00:00
|
|
|
A pipe that has had an end closed is considered
|
1994-05-27 05:00:24 +00:00
|
|
|
.Em widowed .
|
|
|
|
Writing on such a pipe causes the writing process to receive
|
|
|
|
a
|
|
|
|
.Dv SIGPIPE
|
|
|
|
signal.
|
|
|
|
Widowing a pipe is the only way to deliver end-of-file to a reader:
|
|
|
|
after the reader consumes any buffered data, reading a widowed pipe
|
|
|
|
returns a zero count.
|
|
|
|
.Pp
|
1996-01-01 15:40:31 +00:00
|
|
|
The bidirectional nature of this implementation of pipes is not
|
1996-01-30 16:34:52 +00:00
|
|
|
portable to older systems, so it is recommended to use the convention
|
1996-01-01 15:40:31 +00:00
|
|
|
for using the endpoints in the traditional manner when using a
|
|
|
|
pipe in one direction.
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh RETURN VALUES
|
2001-08-09 13:32:13 +00:00
|
|
|
.Rv -std pipe
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh ERRORS
|
|
|
|
The
|
|
|
|
.Fn pipe
|
2002-12-18 09:22:32 +00:00
|
|
|
system call will fail if:
|
2000-05-04 13:09:25 +00:00
|
|
|
.Bl -tag -width Er
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Bq Er EMFILE
|
|
|
|
Too many descriptors are active.
|
|
|
|
.It Bq Er ENFILE
|
|
|
|
The system file table is full.
|
|
|
|
.It Bq Er EFAULT
|
|
|
|
The
|
|
|
|
.Fa fildes
|
|
|
|
buffer is in an invalid area of the process's address
|
|
|
|
space.
|
|
|
|
.El
|
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr sh 1 ,
|
|
|
|
.Xr fork 2 ,
|
1997-01-20 23:23:22 +00:00
|
|
|
.Xr read 2 ,
|
|
|
|
.Xr socketpair 2 ,
|
|
|
|
.Xr write 2
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh HISTORY
|
2002-12-18 09:22:32 +00:00
|
|
|
The
|
1996-08-22 23:31:07 +00:00
|
|
|
.Fn pipe
|
2002-12-18 09:22:32 +00:00
|
|
|
function appeared in
|
1999-07-30 12:45:20 +00:00
|
|
|
.At v3 .
|
1996-01-01 15:40:31 +00:00
|
|
|
.Pp
|
1999-07-30 07:45:40 +00:00
|
|
|
Bidirectional pipes were first used on
|
|
|
|
.At V.4 .
|