Unix and Linux Discussions Tagged with pipe |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
9 |
118,773 |
Shell Programming and Scripting |
|
|
|
2 |
10,383 |
Shell Programming and Scripting |
|
|
|
1 |
9,586 |
Shell Programming and Scripting |
|
|
|
6 |
3,760 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,168 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,323 |
UNIX for Beginners Questions & Answers |
|
|
|
13 |
3,991 |
Shell Programming and Scripting |
|
|
|
2 |
3,762 |
Programming |
|
|
|
8 |
8,172 |
Shell Programming and Scripting |
|
|
|
8 |
4,523 |
Shell Programming and Scripting |
|
|
|
3 |
2,159 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,245 |
Shell Programming and Scripting |
|
|
|
2 |
12,939 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,478 |
Shell Programming and Scripting |
|
|
|
3 |
2,753 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,663 |
Solaris |
|
|
|
0 |
3,949 |
Homework & Coursework Questions |
|
|
|
2 |
2,033 |
Shell Programming and Scripting |
|
|
|
5 |
3,305 |
Linux |
|
|
|
2 |
1,681 |
Shell Programming and Scripting |
|
|
|
1 |
2,776 |
Shell Programming and Scripting |
|
|
|
3 |
2,369 |
Shell Programming and Scripting |
|
|
|
3 |
5,645 |
Shell Programming and Scripting |
|
|
|
10 |
4,827 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
2,838 |
Shell Programming and Scripting |
|
|
|
3 |
2,185 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,972 |
Shell Programming and Scripting |
|
|
|
1 |
2,911 |
UNIX for Dummies Questions & Answers |
|
|
|
16 |
8,140 |
Programming |
|
|
|
8 |
21,132 |
Shell Programming and Scripting |
|
|
|
9 |
8,428 |
Shell Programming and Scripting |
|
|
|
1 |
5,016 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
3,747 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,639 |
Programming |
|
|
|
6 |
5,667 |
Ubuntu |
|
|
|
1 |
3,563 |
Ubuntu |
|
|
|
1 |
19,848 |
UNIX for Advanced & Expert Users |
|
|
|
8 |
19,160 |
Shell Programming and Scripting |
|
|
|
7 |
7,130 |
Shell Programming and Scripting |
|
|
|
3 |
10,263 |
Shell Programming and Scripting |
PIPE(2) System Calls Manual PIPE(2)
NAME
pipe - create an interprocess channel
SYNOPSIS
#include <u.h>
#include <libc.h>
int pipe(int fd[2])
DESCRIPTION
Pipe creates a buffered channel for interprocess I/O communication. Two file descriptors are returned in fd. Data written to fd[1] is
available for reading from fd[0] and data written to fd[0] is available for reading from fd[1].
After the pipe has been established, cooperating processes created by subsequent fork(2) calls may pass data through the pipe with read and
write calls. The bytes placed on a pipe by one write are contiguous even if many processes are writing. Write boundaries are preserved:
each read terminates when the read buffer is full or after reading the last byte of a write, whichever comes first.
The number of bytes available to a read(2) is reported in the Length field returned by fstat or dirfstat on a pipe (see stat(2)).
When all the data has been read from a pipe and the writer has closed the pipe or exited,
read(2) will return 0 bytes. Writes to a pipe with no reader will generate a note sys: write on closed pipe.
SOURCE
/sys/src/libc/9syscall
SEE ALSO
intro(2), read(2), pipe(3)
DIAGNOSTICS
Sets errstr.
BUGS
If a read or a write of a pipe is interrupted, some unknown number of bytes may have been transferred.
When a read from a pipe returns 0 bytes, it usually means end of file but is indistinguishable from reading the result of an explicit write
of zero bytes.
PIPE(2)