Home > php教程 > PHP开发 > body text

Linux pipe function

高洛峰
Release: 2016-12-13 11:34:30
Original
1516 people have browsed it

1. Function description

pipe (create pipeline):
1) Header file #include
2) Define function: int pipe(int filedes[2]);
3) Function description: pipe() The pipeline will be established and the file descriptor will be returned from the parameter filedes array. [Filedes [0] is the read -end of the pipe
FileDes [1] is the writing end of the pipeline.
4) Return value: If successful, return zero, otherwise return -1, and the error reason is stored in errno.

Error code:

The EMFILE process has exhausted the maximum number of file descriptors
The ENFILE system has no file descriptors available.参 EFAULT parameter FileDes array address illegal.


2. Example

#include <unistd.h>  
#include <stdio.h>  
  
int main( void )  
{  
    int filedes[2];  
    char buf[80];  
    pid_t pid;  
      
    pipe( filedes );  
    pid=fork();          
    if (pid > 0)  
    {  
        printf( "This is in the father process,here write a string to the pipe.\n" );  
        char s[] = "Hello world , this is write by pipe.\n";  
        write( filedes[1], s, sizeof(s) );  
        close( filedes[0] );  
        close( filedes[1] );  
    }  
    else if(pid == 0)  
    {  
        printf( "This is in the child process,here read a string from the pipe.\n" );  
        read( filedes[0], buf, sizeof(buf) );  
        printf( "%s\n", buf );  
        close( filedes[0] );  
        close( filedes[1] );  
    }  
      
    waitpid( pid, NULL, 0 );  
      
    return 0;  
}
Copy after login

Run result:

[root@localhost src]# gcc pipe.c

[root@localhost src]# ./a.out
This is in the child process, here read a string from the pipe.
This is in the father process,here write a string to the pipe.
Hello world, this is write by pipe.


When the data in the pipe is read, the pipe is empty. A subsequent read() call will by default block, waiting for some data to be written.非 If you need to be set to non -blocking, you can make the following settings:

FCNTL (FileDes [0], F_SETFL, O_NONBLOCK);

FCNTL (FileDes [1], F_SETFL, O_NONBLOCK);


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!