Query: pipe
OS: redhat
Section: 2
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
PIPE(2) Linux Programmer's Manual PIPE(2)NAMEpipe - create pipeSYNOPSIS#include <unistd.h> int pipe(int filedes[2]);DESCRIPTIONpipe creates a pair of file descriptors, pointing to a pipe inode, and places them in the array pointed to by filedes. filedes[0] is for reading, filedes[1] is for writing.RETURN VALUEOn success, zero is returned. On error, -1 is returned, and errno is set appropriately.ERRORSEMFILE Too many file descriptors are in use by the process. ENFILE The system file table is full. EFAULT filedes is not valid.CONFORMING TOSVr4, SVID, AT&T, POSIX, X/OPEN, BSD 4.3SEE ALSOread(2), write(2), fork(2), socketpair(2) Linux 0.99.11 1993-07-23 PIPE(2)
Related Man Pages |
---|
pipe(2) - mojave |
pipe(2) - freebsd |
pipe(2) - suse |
pipe(2) - v7 |
pipe2(2) - netbsd |